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": "abf66fcd-9513-4f21-85d0-70ed73101d91",
"type": "catalog_entity_properties",
"attributes": {
"catalog_entity_id": "597b6169-1eb0-47a4-8854-500486783131",
"catalog_field_id": "fdedc28a-2045-4388-b872-f557dacf0fbd",
"key": "text",
"value": "Test",
"deleted_at": null,
"updated_at": "2026-01-09T13:23:51.173-08:00",
"created_at": "2026-01-09T13:23:51.173-08:00"
},
"relationships": {
"catalog_entity": {
"data": {
"id": "597b6169-1eb0-47a4-8854-500486783131",
"type": "catalog_entities"
}
},
"catalog_field": {
"data": {
"id": "fdedc28a-2045-4388-b872-f557dacf0fbd",
"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": "abf66fcd-9513-4f21-85d0-70ed73101d91",
"type": "catalog_entity_properties",
"attributes": {
"catalog_entity_id": "597b6169-1eb0-47a4-8854-500486783131",
"catalog_field_id": "fdedc28a-2045-4388-b872-f557dacf0fbd",
"key": "text",
"value": "Test",
"deleted_at": null,
"updated_at": "2026-01-09T13:23:51.173-08:00",
"created_at": "2026-01-09T13:23:51.173-08:00"
},
"relationships": {
"catalog_entity": {
"data": {
"id": "597b6169-1eb0-47a4-8854-500486783131",
"type": "catalog_entities"
}
},
"catalog_field": {
"data": {
"id": "fdedc28a-2045-4388-b872-f557dacf0fbd",
"type": "catalog_fields"
}
}
}
}
}