Skip to main content
GET
Get a CRM record
Returns a single record for a custom CRM object by its UUID.

Path parameters

Response shape

Understanding the attributes object

Attribute keys inside attributes match the slugs defined on the object schema. The shape of the object depends entirely on which attributes exist on that CRM object. For example, a products object with attributes sku, price, and in_stock returns:
To know which keys to expect and their types, call GET /v2/crm/objects/{slug}.

404 Not Found

If either the object slug does not exist in your workspace, or the record ID does not belong to that object, the API returns 404:

When to use this endpoint

  • Detail view — display a single record’s full data after the user clicks a row.
  • Verification — confirm a record still exists and fetch its latest values before displaying or editing.
  • Webhook handlers — look up a record by the ID received in a webhook payload.

Authorizations

Authorization
string
header
required

Path Parameters

objectSlug
string
required

Slug of the custom CRM object.

recordId
string<uuid>
required

UUID of the record.

Response

OK

success
boolean
Example:

true

status
integer
Example:

200

record
object

A record for a custom CRM object.

Last modified on June 11, 2026