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": "cbaaac5b-9c90-43b8-acd0-e776fb9e6f3f",
"type": "catalog_entity_properties",
"attributes": {
"catalog_entity_id": "82d9c6ff-5a3b-41a1-bb72-cc3678de0f3d",
"catalog_field_id": "16d536b0-88bb-435a-a90c-47e65e0538c6",
"key": "text",
"value": "Test",
"deleted_at": null,
"updated_at": "2026-01-30T13:07:05.940-08:00",
"created_at": "2026-01-30T13:07:05.940-08:00"
},
"relationships": {
"catalog_entity": {
"data": {
"id": "82d9c6ff-5a3b-41a1-bb72-cc3678de0f3d",
"type": "catalog_entities"
}
},
"catalog_field": {
"data": {
"id": "16d536b0-88bb-435a-a90c-47e65e0538c6",
"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": "cbaaac5b-9c90-43b8-acd0-e776fb9e6f3f",
"type": "catalog_entity_properties",
"attributes": {
"catalog_entity_id": "82d9c6ff-5a3b-41a1-bb72-cc3678de0f3d",
"catalog_field_id": "16d536b0-88bb-435a-a90c-47e65e0538c6",
"key": "text",
"value": "Test",
"deleted_at": null,
"updated_at": "2026-01-30T13:07:05.940-08:00",
"created_at": "2026-01-30T13:07:05.940-08:00"
},
"relationships": {
"catalog_entity": {
"data": {
"id": "82d9c6ff-5a3b-41a1-bb72-cc3678de0f3d",
"type": "catalog_entities"
}
},
"catalog_field": {
"data": {
"id": "16d536b0-88bb-435a-a90c-47e65e0538c6",
"type": "catalog_fields"
}
}
}
}
}