This is the JSON from an invoice manually created.
"shipping_address": {
"zip": "39211",
"country": "USA",
"address": "600 Main Street",
"city": "Jackson",
"phone": "",
"street": "600 Main Street",
"attention": "Jon Doe",
"street2": "Apt 1B",
"state": "MS",
"fax": ""
}
This is the JSON I am trying to programmatically use.
"shipping_address": {
{
"attention": "Jon Doe",
"street": "123 Main Street",
"street2": "",
"city": "Anytown",
"state": "Illinois",
"zip": "60101"
}
}