Skip to main content
PATCH
/
crm
/
objects
/
{slug}
Update a custom CRM object
curl --request PATCH \
  --url https://api.zeeg.me/v2/crm/objects/{slug} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "singularName": "Product",
  "pluralName": "Products"
}
'
{
  "success": true,
  "status": 200,
  "object": {
    "slug": "products",
    "singularName": "Product",
    "pluralName": "Products",
    "isStandard": false,
    "isActive": true,
    "attributes": [
      {
        "key": "title",
        "label": "Title",
        "type": "text",
        "isRequired": true,
        "isStandard": false
      }
    ],
    "createdAt": "2025-06-01T10:00:00+00:00",
    "updatedAt": "2025-06-15T14:30: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.

Partially updates a custom CRM object’s display metadata. Only fields you include are changed — omitted fields retain their current values.

What can and cannot be changed

FieldUpdatableNotes
singularNameYes
pluralNameYes
slugNoImmutable after creation
isActiveNoNot exposed on this endpoint
Standard objects (people, companies) cannot be updated — the endpoint returns 403. To add or modify attributes, use POST /crm/objects/{slug}/attributes and PATCH /crm/objects/{slug}/attributes/{attributeKey}.

Authorizations

Authorization
string
header
required

Path Parameters

slug
string
required

The slug of the custom object to update.

Example:

"products"

Body

application/json
singularName
string

New singular display name.

Maximum string length: 255
Example:

"Product"

pluralName
string

New plural display name.

Maximum string length: 255
Example:

"Products"

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 14, 2026