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": "20e59902-7fda-4410-8155-18ccc1b47943",
"type": "catalog_entity_properties",
"attributes": {
"catalog_entity_id": "cc1cc7b4-5cad-4513-842b-8ef17f4b5aa0",
"catalog_field_id": "1f18561f-9b39-42cb-9118-298b9caa1fba",
"key": "text",
"value": "Test",
"deleted_at": null,
"updated_at": "2026-02-02T16:12:26.168-08:00",
"created_at": "2026-02-02T16:12:26.168-08:00"
},
"relationships": {
"catalog_entity": {
"data": {
"id": "cc1cc7b4-5cad-4513-842b-8ef17f4b5aa0",
"type": "catalog_entities"
}
},
"catalog_field": {
"data": {
"id": "1f18561f-9b39-42cb-9118-298b9caa1fba",
"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": "20e59902-7fda-4410-8155-18ccc1b47943",
"type": "catalog_entity_properties",
"attributes": {
"catalog_entity_id": "cc1cc7b4-5cad-4513-842b-8ef17f4b5aa0",
"catalog_field_id": "1f18561f-9b39-42cb-9118-298b9caa1fba",
"key": "text",
"value": "Test",
"deleted_at": null,
"updated_at": "2026-02-02T16:12:26.168-08:00",
"created_at": "2026-02-02T16:12:26.168-08:00"
},
"relationships": {
"catalog_entity": {
"data": {
"id": "cc1cc7b4-5cad-4513-842b-8ef17f4b5aa0",
"type": "catalog_entities"
}
},
"catalog_field": {
"data": {
"id": "1f18561f-9b39-42cb-9118-298b9caa1fba",
"type": "catalog_fields"
}
}
}
}
}