I can successfully create a test company in our NON-SandBox account with the below format, but it fails with error(400 - Bad Request) when using the same code with our SandBox account:
{
"address": {
"line1": "Test Line 1",
"line2": null,
"locality": "Test",
"region": "Louisiana",
"zip_code": "70471",
"zip_four": null,
"country_code": "USA"
},
"company_name": "Test Company",
"fax_number": {
"number": null,
"type": null
},
"notes": "Test Notes",
"opt_in_reason": "Company opted-in through webform",
"phone_number": {
"extension": null,
"number": "(337)337-3377",
"type": "Main"
}
}
Is there anyway to get more details about what the API doesn’t like?
TIA