Returns a single record for a custom CRM object by its ID.
Required scope: crm:read or crm:write
curl --request GET \
--url https://api.zeeg.me/v2/crm/{objectSlug}/{recordId} \
--header 'Authorization: Bearer <token>'{
"success": true,
"status": 200,
"record": {
"id": "c1d2e3f4-a5b6-7890-cdef-123456789012",
"objectSlug": "products",
"attributes": {
"sku": "DRESS-001",
"price": 29,
"inventory_count": 150
},
"createdAt": "2025-06-01T10:00:00+00:00",
"updatedAt": "2025-06-01T12:00:00+00:00"
}
}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.
| 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. |
attributes objectattributes 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:
{
"record": {
"id": "c1d2e3f4-a5b6-7890-cdef-123456789012",
"objectSlug": "products",
"attributes": {
"sku": "DRESS-001",
"price": 29,
"in_stock": true
},
"createdAt": "2025-06-01T10:00:00+00:00",
"updatedAt": "2025-06-01T10:00:00+00:00"
}
}
GET /v2/crm/objects/{slug}.
404:
{
"success": false,
"message": "Record not found.",
"status": 404
}
Slug of the custom CRM object.
UUID of the record.
OK
true
200
A record for a custom CRM object.
Hide child attributes
Unique identifier for the record.
"c1d2e3f4-a5b6-7890-cdef-123456789012"
Slug of the CRM object this record belongs to.
"products"
Key/value pairs for the custom attributes defined on the object. Keys are attribute slugs.
{
"sku": "DRESS-001",
"price": 29,
"inventory_count": 150
}ISO 8601 timestamp when the record was created.
"2025-06-01T10:00:00+00:00"
ISO 8601 timestamp when the record was last updated.
"2025-06-01T12:00:00+00:00"
curl --request GET \
--url https://api.zeeg.me/v2/crm/{objectSlug}/{recordId} \
--header 'Authorization: Bearer <token>'{
"success": true,
"status": 200,
"record": {
"id": "c1d2e3f4-a5b6-7890-cdef-123456789012",
"objectSlug": "products",
"attributes": {
"sku": "DRESS-001",
"price": 29,
"inventory_count": 150
},
"createdAt": "2025-06-01T10:00:00+00:00",
"updatedAt": "2025-06-01T12:00:00+00:00"
}
}