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": "d351009c-b157-4a33-a152-e862a26b5a15",
"type": "catalog_entities",
"attributes": {
"catalog_id": "002dd466-9408-4150-b98b-acd13463e82e",
"name": "Test",
"slug": "test",
"position": 1,
"deleted_at": null,
"updated_at": "2025-07-22T16:10:43.054-07:00",
"created_at": "2025-07-22T16:10:43.054-07:00"
},
"relationships": {
"catalog": {
"data": {
"id": "002dd466-9408-4150-b98b-acd13463e82e",
"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": "d351009c-b157-4a33-a152-e862a26b5a15",
"type": "catalog_entities",
"attributes": {
"catalog_id": "002dd466-9408-4150-b98b-acd13463e82e",
"name": "Test",
"slug": "test",
"position": 1,
"deleted_at": null,
"updated_at": "2025-07-22T16:10:43.054-07:00",
"created_at": "2025-07-22T16:10:43.054-07:00"
},
"relationships": {
"catalog": {
"data": {
"id": "002dd466-9408-4150-b98b-acd13463e82e",
"type": "catalogs"
}
},
"properties": {
"data": []
}
}
}
}