Hello, I’m trying to create a verified business customer (soleProprietorship) and I’m pulling the list of business classifications from the API. Regardless of which business classification id I use, the API responds with a 500 and “BusinessClassification invalid”.
Request payload:
{
"address1":"99-99 33rd St",
"businessClassification":"9ed3f677-7d6f-11e3-96a2-5404a6144203",
"businessName":"Jane Corp",
"businessType":"soleProprietorship",
"city":"Some City",
"dateOfBirth":"1980-01-02",
"email":"test+126417@example.com",
"firstName":"Business",
"lastName":"Owner",
"postalCode":"11101",
"ssn":"6789",
"state":"NY",
"type":"business"
}
Error
{
"code":"ValidationError",
"message":"Validation error(s) present. See embedded errors list for more details.",
"_embedded":{
"errors":[
{
"code":"InvalidFormat",
"message":"BusinessClassification invalid.",
"path":"/businessClassification",
"_links":{
}
}
]
}
}
What am I missing?