Retrieves a specific Catalog Field by id
curl --request GET \
--url https://api.rootly.com/v1/catalog_fields/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "61bcc356-f141-49a8-938c-9d3220d1494d",
"type": "catalog_fields",
"attributes": {
"catalog_id": "c6f3fa08-5af8-4429-b274-eae664e4e5bc",
"name": "Test",
"slug": "test",
"kind": "reference",
"kind_catalog_id": "c6f3fa08-5af8-4429-b274-eae664e4e5bc",
"multiple": false,
"position": 1,
"deleted_at": null,
"updated_at": "2025-08-11T23:17:45.673-07:00",
"created_at": "2025-08-11T23:17:45.673-07:00"
},
"relationships": {
"catalog": {
"data": {
"id": "c6f3fa08-5af8-4429-b274-eae664e4e5bc",
"type": "catalogs"
}
}
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
comma separated if needed. eg: catalog
catalog
catalog_field found
The response is of type object
.
Was this page helpful?
curl --request GET \
--url https://api.rootly.com/v1/catalog_fields/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "61bcc356-f141-49a8-938c-9d3220d1494d",
"type": "catalog_fields",
"attributes": {
"catalog_id": "c6f3fa08-5af8-4429-b274-eae664e4e5bc",
"name": "Test",
"slug": "test",
"kind": "reference",
"kind_catalog_id": "c6f3fa08-5af8-4429-b274-eae664e4e5bc",
"multiple": false,
"position": 1,
"deleted_at": null,
"updated_at": "2025-08-11T23:17:45.673-07:00",
"created_at": "2025-08-11T23:17:45.673-07:00"
},
"relationships": {
"catalog": {
"data": {
"id": "c6f3fa08-5af8-4429-b274-eae664e4e5bc",
"type": "catalogs"
}
}
}
}
}