Custom Object

Events that occur when a new custom object is created or when an existing custom object is updated or deleted.

custom_object.created

{
  "data": {
    "id": "05ea44fb-9b0a-4455-bde5-17527d8f4b1c",
    "key": "contact_address",
    "label": "Contact Address",
    "custom_properties": [],
    "created_at": "2023-01-25T11:39:25",
    "updated_at": "2023-01-25T11:39:25"
  },
  "event": "custom_object.created",
  "request_id": "8c7350d0-a886-4232-8c67-22f37f9c2bcd"
}

custom_object.updated

{
  "data": {    
    "id": "05ea44fb-9b0a-4455-bde5-17527d8f4b1c",
    "key": "updated_key",
    "label": "Updated Label",
		"custom_properties": [
      {
        "id": "fab98e5a-9443-463a-8ddc-85b98b0edc36",
        "custom_object_id": "05ea44fb-9b0a-4455-bde5-17527d8f4b1c",
        "key": "city",
        "label": "City",
        "type": "text",
        "required": false,
        "default": null,
        "created_at": "2023-12-25T11:39:25",
        "updated_at": "2023-12-25T11:45:25"
      }
    ],
    "created_at": "2023-12-22T09:44:00",
    "updated_at": "2023-12-22T09:44:00"
  },
  "event": "custom_object.updated",
  "request_id": "9b4e079a-23c4-4e3a-8cc5-07da022fab3f"
}

custom_object.deleted

{
  "data": {
    "id": "05ea44fb-9b0a-4455-bde5-17527d8f4b1c",
    "key": "contact_address",
    "label": "Contact Address",
    "custom_properties": [],
    "created_at": "2023-01-25T11:39:25",
    "updated_at": "2023-01-25T11:39:25"
  },
  "event": "custom_object.deleted",
  "request_id": "e45b8e2d-150a-4301-bd1a-bf9724d1ece3"
}