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": "b44ec380-65f8-49fd-90e8-841f1b4cd6e1",
"type": "catalog_entities",
"attributes": {
"catalog_id": "4ac9b572-9013-49fa-82dd-7c2bc2d63313",
"name": "Test",
"slug": "test",
"position": 1,
"deleted_at": null,
"updated_at": "2025-08-11T16:34:54.623-07:00",
"created_at": "2025-08-11T16:34:54.623-07:00"
},
"relationships": {
"catalog": {
"data": {
"id": "4ac9b572-9013-49fa-82dd-7c2bc2d63313",
"type": "catalogs"
}
},
"properties": {
"data": []
}
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
comma separated if needed. eg: catalog,properties
catalog
, properties
catalog_entity found
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": "b44ec380-65f8-49fd-90e8-841f1b4cd6e1",
"type": "catalog_entities",
"attributes": {
"catalog_id": "4ac9b572-9013-49fa-82dd-7c2bc2d63313",
"name": "Test",
"slug": "test",
"position": 1,
"deleted_at": null,
"updated_at": "2025-08-11T16:34:54.623-07:00",
"created_at": "2025-08-11T16:34:54.623-07:00"
},
"relationships": {
"catalog": {
"data": {
"id": "4ac9b572-9013-49fa-82dd-7c2bc2d63313",
"type": "catalogs"
}
},
"properties": {
"data": []
}
}
}
}