The following table lists common errors and suggestions for fixing them.
Error Responses
Example
Reason
Solution
{ "submitTimeUtc": "2020-04-22T00:29:34Z", "status": "BAD_REQUEST", "reason": "INVALID_DATA", "message": "Validation failed for entity 'Registration/organizationInformation.businessInformation.address/country'. Invalid value length.\r\n", "details": [ { "field": "country", "reason": "INVALID_DATA" } ] }
HTTP Status code 400. Invalid data.
One or more values does not match the expected value. This could be wrong data type, violating field length validation rules, or missing a required field.
Fix the incorrect value or values.
{ "submitTimeUtc": "2020-04-22T00:31:13Z", "status": "UNPROCESSABLE_ENTITY", "reason": "SYSTEM_ERROR", "message": "Something went wrong, please see the details for further information", "details": [ { "field": "parentOrganizationId", "reason": "MISSING_DATA" } ] }
HTTP code 422. Unprocessable entity.
One or more values fails business rule validation. For example, if a child entity does not contain a parent OrganizationId or the organization already exists.
Review the
details
object, which contains the specific value that triggered the error.