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": "8a597da4-d81d-4db2-9a6f-3e997216fdda",
"type": "catalog_entity_properties",
"attributes": {
"catalog_entity_id": "0edd9059-f6fb-40a5-8a1c-b98655b46ea1",
"catalog_field_id": "94950208-3851-4784-8e95-1bf1bd988b11",
"key": "text",
"value": "Test",
"deleted_at": null,
"updated_at": "2025-12-13T18:47:42.667-08:00",
"created_at": "2025-12-13T18:47:42.667-08:00"
},
"relationships": {
"catalog_entity": {
"data": {
"id": "0edd9059-f6fb-40a5-8a1c-b98655b46ea1",
"type": "catalog_entities"
}
},
"catalog_field": {
"data": {
"id": "94950208-3851-4784-8e95-1bf1bd988b11",
"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
Unique ID of the catalog_entity_property
catalog_entity_properties 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": "8a597da4-d81d-4db2-9a6f-3e997216fdda",
"type": "catalog_entity_properties",
"attributes": {
"catalog_entity_id": "0edd9059-f6fb-40a5-8a1c-b98655b46ea1",
"catalog_field_id": "94950208-3851-4784-8e95-1bf1bd988b11",
"key": "text",
"value": "Test",
"deleted_at": null,
"updated_at": "2025-12-13T18:47:42.667-08:00",
"created_at": "2025-12-13T18:47:42.667-08:00"
},
"relationships": {
"catalog_entity": {
"data": {
"id": "0edd9059-f6fb-40a5-8a1c-b98655b46ea1",
"type": "catalog_entities"
}
},
"catalog_field": {
"data": {
"id": "94950208-3851-4784-8e95-1bf1bd988b11",
"type": "catalog_fields"
}
}
}
}
}