RelationshipUpsertResponse
data object[]required
Array of operation results
Array [
- RelationshipUpsertSuccessItem
- RelationshipUpsertErrorItem
idintegerrequired
ID of the successfully created or updated relationship
Example:
123
statusintegerrequired
HTTP status code for this operation
Possible values: [200
, 201
]
Example:
200
statusintegerrequired
HTTP status code for this operation
Example:
400
error objectrequired
Error details for the failed operation
property name* string[]
Array of error messages for the specific field
Possible values: <= 500 characters
Array [
string
Possible values: <= 500 characters
]
]
RelationshipUpsertResponse
{
"data": [
{
"id": 123,
"status": 200
},
{
"status": 400,
"error": {
"target": [
"Organization not found"
]
}
}
]
}