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": "82c68048-87cd-4c4f-bcf5-9f06145a112b",
"type": "catalog_entity_properties",
"attributes": {
"catalog_entity_id": "7a660841-6a2f-40da-8d4d-b6212037c56c",
"catalog_field_id": "a2401eeb-6379-4157-987f-23f80930feec",
"key": "text",
"value": "Test",
"deleted_at": null,
"updated_at": "2026-02-03T13:56:44.596-08:00",
"created_at": "2026-02-03T13:56:44.596-08:00"
},
"relationships": {
"catalog_entity": {
"data": {
"id": "7a660841-6a2f-40da-8d4d-b6212037c56c",
"type": "catalog_entities"
}
},
"catalog_field": {
"data": {
"id": "a2401eeb-6379-4157-987f-23f80930feec",
"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": "82c68048-87cd-4c4f-bcf5-9f06145a112b",
"type": "catalog_entity_properties",
"attributes": {
"catalog_entity_id": "7a660841-6a2f-40da-8d4d-b6212037c56c",
"catalog_field_id": "a2401eeb-6379-4157-987f-23f80930feec",
"key": "text",
"value": "Test",
"deleted_at": null,
"updated_at": "2026-02-03T13:56:44.596-08:00",
"created_at": "2026-02-03T13:56:44.596-08:00"
},
"relationships": {
"catalog_entity": {
"data": {
"id": "7a660841-6a2f-40da-8d4d-b6212037c56c",
"type": "catalog_entities"
}
},
"catalog_field": {
"data": {
"id": "a2401eeb-6379-4157-987f-23f80930feec",
"type": "catalog_fields"
}
}
}
}
}