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": "a6517ab5-7c17-4b1c-bb65-8a87d80f464e",
    "type": "catalog_fields",
    "attributes": {
      "catalog_id": "857906c5-97af-46ba-8269-9a243f582837",
      "name": "Test",
      "slug": "test",
      "kind": "reference",
      "kind_catalog_id": "857906c5-97af-46ba-8269-9a243f582837",
      "multiple": false,
      "position": 1,
      "deleted_at": "2025-09-15T14:57:23.734-07:00",
      "updated_at": "2025-09-15T14:57:23.734-07:00",
      "created_at": "2025-09-15T14:57:22.369-07:00"
    },
    "relationships": {
      "catalog": {
        "data": {
          "id": "857906c5-97af-46ba-8269-9a243f582837",
          "type": "catalogs"
        }
      }
    }
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
required

Resource UUID

Response

catalog_field deleted

data
object
required