Retrieves a specific Catalog Entity by id
curl --request GET \
--url https://api.rootly.com/v1/catalog_entities/{id} \
--header 'Authorization: Bearer <token>'{
"data": {
"id": "86a45c83-5cec-4b6a-9a3f-dcc1d397e63a",
"type": "catalog_entities",
"attributes": {
"catalog_id": "3e5d32c8-784e-4de4-9493-039026b02182",
"name": "Test",
"slug": "test",
"position": 1,
"deleted_at": null,
"updated_at": "2026-01-03T21:25:26.659-08:00",
"created_at": "2026-01-03T21:25:26.659-08:00"
},
"relationships": {
"catalog": {
"data": {
"id": "3e5d32c8-784e-4de4-9493-039026b02182",
"type": "catalogs"
}
},
"properties": {
"data": []
}
}
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Resource UUID
comma separated if needed. eg: catalog,properties
catalog, properties catalog_entity found by slug
Show child attributes
Was this page helpful?
curl --request GET \
--url https://api.rootly.com/v1/catalog_entities/{id} \
--header 'Authorization: Bearer <token>'{
"data": {
"id": "86a45c83-5cec-4b6a-9a3f-dcc1d397e63a",
"type": "catalog_entities",
"attributes": {
"catalog_id": "3e5d32c8-784e-4de4-9493-039026b02182",
"name": "Test",
"slug": "test",
"position": 1,
"deleted_at": null,
"updated_at": "2026-01-03T21:25:26.659-08:00",
"created_at": "2026-01-03T21:25:26.659-08:00"
},
"relationships": {
"catalog": {
"data": {
"id": "3e5d32c8-784e-4de4-9493-039026b02182",
"type": "catalogs"
}
},
"properties": {
"data": []
}
}
}
}