BulkUpsertOrganizationResponse
data object[]required
Array of results for each organization creation attempt
Array [
idinteger
Internal unique identifier of the created organization (system-generated)
Example:
1statusinteger
HTTP status code indicating the result of the creation attempt for this specific organization
Example:
200operationTypestring
The operation apply to this record
Possible values: [create, update]
errorstring
Error message if the creation failed (only present when status is not 200 or 201)
Example:
Organization with this external_id already exists]
BulkUpsertOrganizationResponse
{
"data": [
{
"id": 1,
"status": 200,
"operationType": "create",
"error": "Organization with this external_id already exists"
}
]
}