custom-objects
Get a custom object
Returns a single custom object by ID, including its custom field values.
Rate limit: 300 requests per minute
get/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.
Response
Example response
{
"data": {
"custom_fields": {
"priority": {
"value": "high"
}
}
}
}