Skip to main content
GET
/
crm
/
objects
/
{slug}
Get a CRM object
curl --request GET \
  --url https://api.zeeg.me/v2/crm/objects/{slug} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "status": 200,
  "object": {
    "slug": "people",
    "singularName": "Person",
    "pluralName": "People",
    "isStandard": true,
    "isActive": true,
    "attributes": [
      {
        "key": "first_name",
        "label": "First Name",
        "type": "text",
        "isRequired": false,
        "isStandard": true
      },
      {
        "key": "last_name",
        "label": "Last Name",
        "type": "text",
        "isRequired": false,
        "isStandard": true
      },
      {
        "key": "email",
        "label": "Email",
        "type": "text",
        "isRequired": false,
        "isStandard": true
      },
      {
        "key": "phone_number",
        "label": "Phone Number",
        "type": "phone",
        "isRequired": false,
        "isStandard": true
      },
      {
        "key": "job_title",
        "label": "Job Title",
        "type": "text",
        "isRequired": false,
        "isStandard": true
      },
      {
        "key": "customer_status",
        "label": "Customer Status",
        "type": "select",
        "isRequired": false,
        "isStandard": false,
        "isUnique": false,
        "isArchived": false,
        "options": [
          {
            "id": 1,
            "value": "Lead",
            "color": "warning"
          },
          {
            "id": 2,
            "value": "Active",
            "color": "success"
          },
          {
            "id": 3,
            "value": "Churned",
            "color": "red"
          }
        ]
      }
    ],
    "createdAt": "2025-01-15T09:00:00+00:00",
    "updatedAt": "2025-06-01T12:00:00+00:00"
  }
}

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.

Returns the full schema for a single object identified by its slug, including every attribute definition with its type, label, options, and relation metadata. Standard object slugs are always people and companies. Custom object slugs are set at creation time and are immutable.

Authorizations

Authorization
string
header
required

Path Parameters

slug
string
required

The object slug. Standard objects use people and companies. Custom objects use the slug you assigned when creating them.

Example:

"people"

Response

OK

success
boolean
Example:

true

status
integer
Example:

200

object
object

A CRM object definition including its full attribute schema.

Last modified on May 7, 2026