Records
Get a CRM Record
Returns a single record for a custom CRM object by its ID.
Required scope: crm:read or crm:write
GET
Get a CRM record
Returns a single record for a custom CRM object by its UUID.Documentation Index
Fetch the complete documentation index at: https://developer.zeeg.me/llms.txt
Use this file to discover all available pages before exploring further.
Path parameters
Response shape
| Field | Type | Description |
|---|---|---|
id | string (UUID) | Unique identifier for the record. |
objectSlug | string | The object this record belongs to (e.g. products). |
attributes | object | All attribute values for this record, keyed by attribute slug. Attributes that have not been set are returned as null. |
createdAt | string (ISO 8601) | Timestamp when the record was created. |
updatedAt | string (ISO 8601) | Timestamp when the record was last modified. |
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:
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 returns404:
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.
Last modified on May 7, 2026