Last active
July 12, 2024 19:56
-
-
Save michaelbragg/8d63dbcfeee2c28438e3508cc7b60ca5 to your computer and use it in GitHub Desktop.
Encoding Customer Data
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
JSON.stringify({ | |
"email": "[email protected]", | |
"password": "", | |
"first_name": "Emmit", | |
"last_name": "Pitfield", | |
"billing": { | |
"first_name": "Emmit", | |
"last_name": "Pitfield", | |
"address_1": "871 Nya Ranch", | |
"address_2": "", | |
"city": "Koeppfort", | |
"state": "CA", | |
"postcode": "1234", | |
"country": "US", | |
"email": "[email protected]", | |
"phone": "000-000-0000" | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment