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": "5e8b8c88-a4a1-4e1c-88e5-a9cf9dc796c1",
"type": "catalog_fields",
"attributes": {
"catalog_id": "c7e1b98f-24c4-4d85-b801-fb66eea4df2e",
"name": "Test",
"slug": "test",
"kind": "reference",
"kind_catalog_id": "c7e1b98f-24c4-4d85-b801-fb66eea4df2e",
"multiple": false,
"position": 1,
"deleted_at": null,
"updated_at": "2025-07-21T23:14:28.821-07:00",
"created_at": "2025-07-21T23:14:28.821-07:00"
},
"relationships": {
"catalog": {
"data": {
"id": "c7e1b98f-24c4-4d85-b801-fb66eea4df2e",
"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": "5e8b8c88-a4a1-4e1c-88e5-a9cf9dc796c1",
"type": "catalog_fields",
"attributes": {
"catalog_id": "c7e1b98f-24c4-4d85-b801-fb66eea4df2e",
"name": "Test",
"slug": "test",
"kind": "reference",
"kind_catalog_id": "c7e1b98f-24c4-4d85-b801-fb66eea4df2e",
"multiple": false,
"position": 1,
"deleted_at": null,
"updated_at": "2025-07-21T23:14:28.821-07:00",
"created_at": "2025-07-21T23:14:28.821-07:00"
},
"relationships": {
"catalog": {
"data": {
"id": "c7e1b98f-24c4-4d85-b801-fb66eea4df2e",
"type": "catalogs"
}
}
}
}
}