DELETE
/
v1
/
catalog_fields
/
{id}
Delete a catalog_field
curl --request DELETE \
  --url https://api.rootly.com/v1/catalog_fields/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "6634dd25-b7b6-4b78-9d44-43e746bc5957",
    "type": "catalog_fields",
    "attributes": {
      "catalog_id": "22068e00-7aaa-45cd-af50-7bd0f809956a",
      "name": "Test",
      "slug": "test",
      "kind": "reference",
      "kind_catalog_id": "22068e00-7aaa-45cd-af50-7bd0f809956a",
      "multiple": false,
      "position": 1,
      "deleted_at": "2025-07-15T12:48:20.361-07:00",
      "updated_at": "2025-07-15T12:48:20.361-07:00",
      "created_at": "2025-07-15T12:48:18.222-07:00"
    },
    "relationships": {
      "catalog": {
        "data": {
          "id": "22068e00-7aaa-45cd-af50-7bd0f809956a",
          "type": "catalogs"
        }
      }
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Response

200
application/vnd.api+json

catalog_field deleted

The response is of type object.