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": "f9f26863-498d-452d-9a67-b3a9bd3c02ff",
"type": "catalog_entities",
"attributes": {
"catalog_id": "03d9326a-7224-4a34-a073-ffbb655fbe64",
"name": "Test",
"slug": "test",
"position": 1,
"deleted_at": null,
"updated_at": "2025-12-15T13:41:31.119-08:00",
"created_at": "2025-12-15T13:41:31.119-08:00"
},
"relationships": {
"catalog": {
"data": {
"id": "03d9326a-7224-4a34-a073-ffbb655fbe64",
"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
Unique ID of the catalog_entity
catalog_entities Was this page helpful?
curl --request GET \
--url https://api.rootly.com/v1/catalog_entities/{id} \
--header 'Authorization: Bearer <token>'{
"data": {
"id": "f9f26863-498d-452d-9a67-b3a9bd3c02ff",
"type": "catalog_entities",
"attributes": {
"catalog_id": "03d9326a-7224-4a34-a073-ffbb655fbe64",
"name": "Test",
"slug": "test",
"position": 1,
"deleted_at": null,
"updated_at": "2025-12-15T13:41:31.119-08:00",
"created_at": "2025-12-15T13:41:31.119-08:00"
},
"relationships": {
"catalog": {
"data": {
"id": "03d9326a-7224-4a34-a073-ffbb655fbe64",
"type": "catalogs"
}
},
"properties": {
"data": []
}
}
}
}