Retrieves a specific Catalog Entity Property by id.
curl --request GET \
--url https://api.rootly.com/v1/catalog_entity_properties/{id} \
--header 'Authorization: Bearer <token>'{
"data": {
"id": "8b58f0df-812f-421a-a715-3fa512b22ac7",
"type": "catalog_entity_properties",
"attributes": {
"catalog_entity_id": "d939267c-6d3c-465a-aaa3-4e04a4f9e331",
"catalog_field_id": "a0f3e1ed-ed91-48cf-b175-5a47d46ac85f",
"key": "text",
"value": "Test",
"deleted_at": null,
"updated_at": "2026-02-13T14:01:32.475-08:00",
"created_at": "2026-02-13T14:01:32.475-08:00"
},
"relationships": {
"catalog_entity": {
"data": {
"id": "d939267c-6d3c-465a-aaa3-4e04a4f9e331",
"type": "catalog_entities"
}
},
"catalog_field": {
"data": {
"id": "a0f3e1ed-ed91-48cf-b175-5a47d46ac85f",
"type": "catalog_fields"
}
}
}
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
comma separated if needed. eg: catalog_entity,catalog_field
catalog_entity, catalog_field catalog_entity_property found
Show child attributes
Was this page helpful?
curl --request GET \
--url https://api.rootly.com/v1/catalog_entity_properties/{id} \
--header 'Authorization: Bearer <token>'{
"data": {
"id": "8b58f0df-812f-421a-a715-3fa512b22ac7",
"type": "catalog_entity_properties",
"attributes": {
"catalog_entity_id": "d939267c-6d3c-465a-aaa3-4e04a4f9e331",
"catalog_field_id": "a0f3e1ed-ed91-48cf-b175-5a47d46ac85f",
"key": "text",
"value": "Test",
"deleted_at": null,
"updated_at": "2026-02-13T14:01:32.475-08:00",
"created_at": "2026-02-13T14:01:32.475-08:00"
},
"relationships": {
"catalog_entity": {
"data": {
"id": "d939267c-6d3c-465a-aaa3-4e04a4f9e331",
"type": "catalog_entities"
}
},
"catalog_field": {
"data": {
"id": "a0f3e1ed-ed91-48cf-b175-5a47d46ac85f",
"type": "catalog_fields"
}
}
}
}
}