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": "6172cf54-4b49-47f8-851f-801434149e6b",
"type": "catalog_entities",
"attributes": {
"catalog_id": "ac7332ee-d8cc-4971-83fe-af4d69e45d15",
"name": "Test",
"slug": "test",
"position": 1,
"deleted_at": null,
"updated_at": "2025-09-01T03:36:44.103-07:00",
"created_at": "2025-09-01T03:36:44.103-07:00"
},
"relationships": {
"catalog": {
"data": {
"id": "ac7332ee-d8cc-4971-83fe-af4d69e45d15",
"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
The response is of type object
.
Was this page helpful?
curl --request GET \
--url https://api.rootly.com/v1/catalog_entities/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "6172cf54-4b49-47f8-851f-801434149e6b",
"type": "catalog_entities",
"attributes": {
"catalog_id": "ac7332ee-d8cc-4971-83fe-af4d69e45d15",
"name": "Test",
"slug": "test",
"position": 1,
"deleted_at": null,
"updated_at": "2025-09-01T03:36:44.103-07:00",
"created_at": "2025-09-01T03:36:44.103-07:00"
},
"relationships": {
"catalog": {
"data": {
"id": "ac7332ee-d8cc-4971-83fe-af4d69e45d15",
"type": "catalogs"
}
},
"properties": {
"data": []
}
}
}
}