Create and Update of Custom Objects throws a 503 error when I include ticket or user relationships in the API payload.
{
"custom_object_record": {
"name": "Test Record",
"custom_object_fields": {
"ticket_to_alarm_relationship": 1996,
"user_to_alarm_relationship": 1517839046222,
"wake_date": 1689717600
}
}
}
results in a 503 error
{
"error": {
"title": "DatabaseError",
"message": "Unknown database error"
}
}
note: Everything works if the 2 relationship custom object fields (ticket_to_alarm_relationship, user_to_alarm_relationship) are removed from the request payload.
These same 2 custom object fields are returned as datapoints when doing a GET on an existing object, so it seems like they would be available. However, I don't see relationships documented in the Developer API Reference. Am I missing a reference to the right way to accomplish this somewhere? Or is it not available yet?