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": "5475e5d8-ae3d-485d-b4f1-87d72738d7a3",
"type": "catalog_entities",
"attributes": {
"catalog_id": "eefe6b0e-025a-49df-a71e-cf87b5e52548",
"name": "Test",
"slug": "test",
"position": 1,
"deleted_at": null,
"updated_at": "2026-01-23T22:54:58.622-08:00",
"created_at": "2026-01-23T22:54:58.622-08:00"
},
"relationships": {
"catalog": {
"data": {
"id": "eefe6b0e-025a-49df-a71e-cf87b5e52548",
"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": "5475e5d8-ae3d-485d-b4f1-87d72738d7a3",
"type": "catalog_entities",
"attributes": {
"catalog_id": "eefe6b0e-025a-49df-a71e-cf87b5e52548",
"name": "Test",
"slug": "test",
"position": 1,
"deleted_at": null,
"updated_at": "2026-01-23T22:54:58.622-08:00",
"created_at": "2026-01-23T22:54:58.622-08:00"
},
"relationships": {
"catalog": {
"data": {
"id": "eefe6b0e-025a-49df-a71e-cf87b5e52548",
"type": "catalogs"
}
},
"properties": {
"data": []
}
}
}
}