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": "2022732d-ee4e-4658-8aab-22b5c04bcb83",
"type": "catalog_entities",
"attributes": {
"catalog_id": "8545538e-a15b-4055-9dad-66e5a05be33c",
"name": "Test",
"slug": "test",
"position": 1,
"deleted_at": null,
"updated_at": "2026-02-13T18:05:08.278-08:00",
"created_at": "2026-02-13T18:05:08.278-08:00"
},
"relationships": {
"catalog": {
"data": {
"id": "8545538e-a15b-4055-9dad-66e5a05be33c",
"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": "2022732d-ee4e-4658-8aab-22b5c04bcb83",
"type": "catalog_entities",
"attributes": {
"catalog_id": "8545538e-a15b-4055-9dad-66e5a05be33c",
"name": "Test",
"slug": "test",
"position": 1,
"deleted_at": null,
"updated_at": "2026-02-13T18:05:08.278-08:00",
"created_at": "2026-02-13T18:05:08.278-08:00"
},
"relationships": {
"catalog": {
"data": {
"id": "8545538e-a15b-4055-9dad-66e5a05be33c",
"type": "catalogs"
}
},
"properties": {
"data": []
}
}
}
}