Skip to main content

Company Sync HTTP status codes

CodeDescriptionResponse body
202EVENT ACCEPTEDThere is no response body
400

BAD REQUEST
Too many sets of information were received.

Scenario 1:

{
"code": "MAX_TENANT_COUNT_EXCEEDED",
"message": "Tenant count cannot be more than 1"
}
400

BAD REQUEST
No tenant information was provided.

Scenario 2:

{
"code": "NO_TENANT_PROVIDED","message": "No tenant provided"
}
400

DEVELOPER IDENTIFIER INVALID
You did not provide a valid developer identifier.

DEVELOPER TENANT IDENTIFIER INVALID
You did not provide a valid developer tenant identifier.

Scenario 3:

{
"code": "INVALID_TENANTS_FOUND",
"message": "Invalid tenants found",
"details": [
{
"developerTenantIdentifier": "",
"invalidFields": {
"developerTenantIdentifier": "This field cannot be blank",
"developerIdentifier": "This field cannot be blank"
},
"developerIdentifier": ""
}
]
}
400

DEVELOPER IDENTIFIER INVALID
The developer identifier in the request was incorrect.

Scenario 4:

{ 
"code":"INVALID_DEVELOPER_IDENTIFIER",
"message": "Developer company does not exist"
}
401

UNAUTHORIZED
The authentication credentials are invalid.

There is no response body.
403

FORBIDDEN
Company Synchronization is disabled for the marketplace, or for the developer.


{
"code": "SYNC_DISABLED",
"message": "Sync is disabled"
}

Was this page helpful?