Skip to main content
PATCH
/
v1
/
objects
/
{identifier}
Update an object
curl --request PATCH \
  --url https://api.connect-crm.com/v1/objects/{identifier} \
  --header 'Content-Type: application/json' \
  --data '
{
  "singular_noun": "<string>",
  "plural_noun": "<string>",
  "archived_at": "2024-09-04T20:45:09Z"
}
'
{
  "data": {
    "id": {
      "workspace_id": "9293961c-df93-4d6d-a2cc-fc3e353b2d10",
      "object_id": "9293961c-df93-4d6d-a2cc-fc3e353b2d10"
    },
    "slug": "<string>",
    "singular_noun": "<string>",
    "plural_noun": "<string>",
    "created_at": "2024-09-04T20:45:09Z",
    "epithet_path": {
      "attribute_id": "<string>",
      "object_id": "<string>"
    },
    "is_system_object": true,
    "archived_at": "2024-09-04T20:45:09Z"
  }
}

Path Parameters

identifier
string
required

A UUID or slug to identify the object.

Body

application/json
singular_noun
string

The singular form of the object's name.

plural_noun
string

The plural form of the object's name.

archived_at
string<date-time> | null

When the object was archived, if applicable.

Example:

"2024-09-04T20:45:09Z"

Response

Success

data
object
required