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": "8da98e26-d1f3-4be7-b36c-1f04bb9217dc",
"type": "catalog_entity_properties",
"attributes": {
"catalog_entity_id": "1a2a7154-ba3b-4be1-b808-45e20cb4ad11",
"catalog_field_id": "adb79d8a-03ae-4912-88d9-e738ce24f4fb",
"key": "text",
"value": "Test",
"deleted_at": null,
"updated_at": "2026-02-09T13:09:25.696-08:00",
"created_at": "2026-02-09T13:09:25.696-08:00"
},
"relationships": {
"catalog_entity": {
"data": {
"id": "1a2a7154-ba3b-4be1-b808-45e20cb4ad11",
"type": "catalog_entities"
}
},
"catalog_field": {
"data": {
"id": "adb79d8a-03ae-4912-88d9-e738ce24f4fb",
"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": "8da98e26-d1f3-4be7-b36c-1f04bb9217dc",
"type": "catalog_entity_properties",
"attributes": {
"catalog_entity_id": "1a2a7154-ba3b-4be1-b808-45e20cb4ad11",
"catalog_field_id": "adb79d8a-03ae-4912-88d9-e738ce24f4fb",
"key": "text",
"value": "Test",
"deleted_at": null,
"updated_at": "2026-02-09T13:09:25.696-08:00",
"created_at": "2026-02-09T13:09:25.696-08:00"
},
"relationships": {
"catalog_entity": {
"data": {
"id": "1a2a7154-ba3b-4be1-b808-45e20cb4ad11",
"type": "catalog_entities"
}
},
"catalog_field": {
"data": {
"id": "adb79d8a-03ae-4912-88d9-e738ce24f4fb",
"type": "catalog_fields"
}
}
}
}
}