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": "c7c0111b-010e-4162-b1ec-d392fc500e12",
"type": "catalog_entity_properties",
"attributes": {
"catalog_entity_id": "e30a2878-e03a-4141-8847-81fa87484037",
"catalog_field_id": "9eb4c946-2565-4869-ab68-e1c676e22220",
"key": "text",
"value": "Test",
"deleted_at": null,
"updated_at": "2026-01-23T12:26:43.816-08:00",
"created_at": "2026-01-23T12:26:43.816-08:00"
},
"relationships": {
"catalog_entity": {
"data": {
"id": "e30a2878-e03a-4141-8847-81fa87484037",
"type": "catalog_entities"
}
},
"catalog_field": {
"data": {
"id": "9eb4c946-2565-4869-ab68-e1c676e22220",
"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": "c7c0111b-010e-4162-b1ec-d392fc500e12",
"type": "catalog_entity_properties",
"attributes": {
"catalog_entity_id": "e30a2878-e03a-4141-8847-81fa87484037",
"catalog_field_id": "9eb4c946-2565-4869-ab68-e1c676e22220",
"key": "text",
"value": "Test",
"deleted_at": null,
"updated_at": "2026-01-23T12:26:43.816-08:00",
"created_at": "2026-01-23T12:26:43.816-08:00"
},
"relationships": {
"catalog_entity": {
"data": {
"id": "e30a2878-e03a-4141-8847-81fa87484037",
"type": "catalog_entities"
}
},
"catalog_field": {
"data": {
"id": "9eb4c946-2565-4869-ab68-e1c676e22220",
"type": "catalog_fields"
}
}
}
}
}