DELETE
/
v1
/
catalog_fields
/
{id}
curl --request DELETE \
  --url https://api.rootly.com/v1/catalog_fields/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "2b21daf2-2ad0-4495-8364-cf7adb46159b",
    "type": "catalog_fields",
    "attributes": {
      "catalog_id": "fc283644-2611-49df-9711-0ad15640aa7e",
      "name": "Test",
      "slug": "test",
      "kind": "reference",
      "kind_catalog_id": "fc283644-2611-49df-9711-0ad15640aa7e",
      "multiple": false,
      "position": 1,
      "deleted_at": "2025-03-26T23:18:09.706-07:00",
      "updated_at": "2025-03-26T23:18:09.706-07:00",
      "created_at": "2025-03-26T23:18:07.790-07:00"
    },
    "relationships": {
      "catalog": {
        "data": {
          "id": "fc283644-2611-49df-9711-0ad15640aa7e",
          "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
data
object
required

Was this page helpful?