Delete a specific catalog_field by id
curl --request DELETE \
--url https://api.rootly.com/v1/catalog_fields/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "c14d37c3-5343-44ec-a49d-a3d5de08fed6",
"type": "catalog_fields",
"attributes": {
"catalog_id": "5778d723-80a6-498c-afce-354fa38d0970",
"name": "Test",
"slug": "test",
"kind": "reference",
"kind_catalog_id": "5778d723-80a6-498c-afce-354fa38d0970",
"multiple": false,
"position": 1,
"deleted_at": "2025-08-26T21:11:14.173-07:00",
"updated_at": "2025-08-26T21:11:14.173-07:00",
"created_at": "2025-08-26T21:11:13.220-07:00"
},
"relationships": {
"catalog": {
"data": {
"id": "5778d723-80a6-498c-afce-354fa38d0970",
"type": "catalogs"
}
}
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Resource UUID
catalog_field deleted
The response is of type object
.
Was this page helpful?
curl --request DELETE \
--url https://api.rootly.com/v1/catalog_fields/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "c14d37c3-5343-44ec-a49d-a3d5de08fed6",
"type": "catalog_fields",
"attributes": {
"catalog_id": "5778d723-80a6-498c-afce-354fa38d0970",
"name": "Test",
"slug": "test",
"kind": "reference",
"kind_catalog_id": "5778d723-80a6-498c-afce-354fa38d0970",
"multiple": false,
"position": 1,
"deleted_at": "2025-08-26T21:11:14.173-07:00",
"updated_at": "2025-08-26T21:11:14.173-07:00",
"created_at": "2025-08-26T21:11:13.220-07:00"
},
"relationships": {
"catalog": {
"data": {
"id": "5778d723-80a6-498c-afce-354fa38d0970",
"type": "catalogs"
}
}
}
}
}