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": "319fa671-8261-443b-b97f-46f725957771",
"type": "catalog_fields",
"attributes": {
"catalog_id": "f1c0e953-a316-4da8-81ef-5dc321c4efbf",
"name": "Test",
"slug": "test",
"kind": "reference",
"kind_catalog_id": "f1c0e953-a316-4da8-81ef-5dc321c4efbf",
"multiple": false,
"position": 1,
"deleted_at": null,
"updated_at": "2025-09-01T03:36:49.922-07:00",
"created_at": "2025-09-01T03:36:49.922-07:00"
},
"relationships": {
"catalog": {
"data": {
"id": "f1c0e953-a316-4da8-81ef-5dc321c4efbf",
"type": "catalogs"
}
}
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Resource UUID
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": "319fa671-8261-443b-b97f-46f725957771",
"type": "catalog_fields",
"attributes": {
"catalog_id": "f1c0e953-a316-4da8-81ef-5dc321c4efbf",
"name": "Test",
"slug": "test",
"kind": "reference",
"kind_catalog_id": "f1c0e953-a316-4da8-81ef-5dc321c4efbf",
"multiple": false,
"position": 1,
"deleted_at": null,
"updated_at": "2025-09-01T03:36:49.922-07:00",
"created_at": "2025-09-01T03:36:49.922-07:00"
},
"relationships": {
"catalog": {
"data": {
"id": "f1c0e953-a316-4da8-81ef-5dc321c4efbf",
"type": "catalogs"
}
}
}
}
}