custom-objects
Update a custom object
Updates a custom object. Only provided fields are modified. To update the linked account, pass the built-in Account relationship field in custom_fields: {"custom_fields":{"account":{"value":"account_uuid"}}}.
Rate limit: 120 requests per minute
patch/custom-objects/{type}/{id}
Path parameters
typestring required
The type slug of the custom object (e.g. "companies").
idstring required
The ID of the custom object.
Request body
Example request
{
"custom_fields": {
"account": {
"value": "account_uuid"
}
}
}Response
Example response
{
"data": {
"custom_fields": {
"priority": {
"value": "high"
}
}
}
}