For the complete documentation index, see llms.txt. This page is also available as Markdown.

Custom Objects

List custom objects

get

Returns paginated custom objects of the given type.

Rate limit: 60 requests per minute

Authorizations
AuthorizationstringRequired

Authorization: Bearer

Path parameters
typestringRequired

The type slug of the custom object (e.g. "companies").

Query parameters
cursorstringOptional

Pagination cursor for the next page.

limitinteger · int64Optional

Number of results per page. Defaults to 25, max 100.

Responses
200Success
application/json
request_idstringOptional
get/custom-objects/{type}

Get a custom object

get

Returns a single custom object by ID, including its custom field values.

Rate limit: 60 requests per minute

Authorizations
AuthorizationstringRequired

Authorization: Bearer

Path parameters
typestringRequired

The type slug of the custom object (e.g. "companies").

idstringRequired

The ID of the custom object.

Responses
200Success
application/json
request_idstringOptional
get/custom-objects/{type}/{id}

Search for custom objects by a given filter

post

Currently, the following fields are filterable for custom objects:

  • name. Allowed operators: equals, in, not_in, string_contains, string_does_not_contain, is_set, is_unset

  • created_at (in RFC3339 format). Allowed operators: time_is_after, time_is_before, time_range

  • updated_at (in RFC3339 format). Allowed operators: time_is_after, time_is_before, time_range

  • custom fields (pass in the slug of the custom field)

Rate limit: 20 requests per minute

Authorizations
AuthorizationstringRequired

Authorization: Bearer

Path parameters
typestringRequired

The type slug of the custom object (e.g. "companies").

Body
cursorstringOptional

The cursor to use for pagination.

limitinteger · int64Optional

The number of results to fetch. Defaults to 25, max 100.

Responses
200Success
application/json
request_idstringOptional
post/custom-objects/{type}/search

Create a custom object

post

Creates a new custom object instance of the given type. To link the object to an account, pass the built-in Account relationship field in custom_fields: {"name":"Example","custom_fields":{"account":{"value":"account_uuid"}}}.

Rate limit: 20 requests per minute

Authorizations
AuthorizationstringRequired

Authorization: Bearer

Path parameters
typestringRequired

The type slug of the custom object (e.g. "companies").

Body
namestringRequired

The name of the custom object.

Responses
200Success
application/json
request_idstringOptional
post/custom-objects/{type}

Update a custom object

patch

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: 20 requests per minute

Authorizations
AuthorizationstringRequired

Authorization: Bearer

Path parameters
typestringRequired

The type slug of the custom object (e.g. "companies").

idstringRequired

The ID of the custom object.

Body
namestringOptional

The name of the custom object.

Responses
200Success
application/json
request_idstringOptional
patch/custom-objects/{type}/{id}

Bulk update custom objects

patch

Applies the same update to multiple custom objects of the given type in a single request. Pass between 1 and 100 IDs and the custom field values to set; only the provided fields are modified on each object. To update the linked account, pass the built-in Account relationship field in custom_fields: {"ids":["object_uuid"],"custom_fields":{"account":{"value":"account_uuid"}}}. To unset a field, pass its slug with an empty value.

Rate limit: 20 requests per minute

Authorizations
AuthorizationstringRequired

Authorization: Bearer

Path parameters
typestringRequired

The type slug of the custom object (e.g. "opportunity").

Body
idsstring[]Required

The IDs of the custom objects to update. Must be between 1 and 100 IDs.

Responses
200Success
application/json
request_idstringOptional
successbooleanOptional
updated_idsstring[]Optional
patch/custom-objects/{type}

Delete a custom object

delete

Deletes a custom object instance.

Rate limit: 20 requests per minute

Authorizations
AuthorizationstringRequired

Authorization: Bearer

Path parameters
typestringRequired

The type slug of the custom object (e.g. "companies").

idstringRequired

The ID of the custom object.

Responses
200Success
application/json
request_idstringOptional
delete/custom-objects/{type}/{id}

Last updated

Was this helpful?