Records
Get a CRM Record
Retrieve a single custom CRM object record by UUID with the Zeeg CRM API, returning all its attribute values keyed by attribute slug
GET
Get a CRM record
Returns a single record for a custom CRM object by its UUID.
Understanding the
Attribute keys inside
To know which keys to expect and their types, call
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 June 11, 2026