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": "8dc0083d-adfb-43d7-ad53-90f48c53b69a",
"type": "catalog_entity_properties",
"attributes": {
"catalog_entity_id": "ce401c15-c738-4dd2-9cc3-7b2a5c24d461",
"catalog_field_id": "5ec6e32b-f550-43a2-a0c3-2489dfe397fb",
"key": "text",
"value": "Test",
"deleted_at": null,
"updated_at": "2025-12-24T09:23:48.878-08:00",
"created_at": "2025-12-24T09:23:48.878-08:00"
},
"relationships": {
"catalog_entity": {
"data": {
"id": "ce401c15-c738-4dd2-9cc3-7b2a5c24d461",
"type": "catalog_entities"
}
},
"catalog_field": {
"data": {
"id": "5ec6e32b-f550-43a2-a0c3-2489dfe397fb",
"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": "8dc0083d-adfb-43d7-ad53-90f48c53b69a",
"type": "catalog_entity_properties",
"attributes": {
"catalog_entity_id": "ce401c15-c738-4dd2-9cc3-7b2a5c24d461",
"catalog_field_id": "5ec6e32b-f550-43a2-a0c3-2489dfe397fb",
"key": "text",
"value": "Test",
"deleted_at": null,
"updated_at": "2025-12-24T09:23:48.878-08:00",
"created_at": "2025-12-24T09:23:48.878-08:00"
},
"relationships": {
"catalog_entity": {
"data": {
"id": "ce401c15-c738-4dd2-9cc3-7b2a5c24d461",
"type": "catalog_entities"
}
},
"catalog_field": {
"data": {
"id": "5ec6e32b-f550-43a2-a0c3-2489dfe397fb",
"type": "catalog_fields"
}
}
}
}
}