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": "05c32919-fc53-49d2-8ebf-0235117837dc",
"type": "catalog_entity_properties",
"attributes": {
"catalog_entity_id": "fee665d5-a365-4aa4-94ff-78f0f67f6834",
"catalog_field_id": "61145e02-ac99-4493-a419-3c29d0649f21",
"key": "text",
"value": "Test",
"deleted_at": null,
"updated_at": "2026-02-06T20:45:54.794-08:00",
"created_at": "2026-02-06T20:45:54.794-08:00"
},
"relationships": {
"catalog_entity": {
"data": {
"id": "fee665d5-a365-4aa4-94ff-78f0f67f6834",
"type": "catalog_entities"
}
},
"catalog_field": {
"data": {
"id": "61145e02-ac99-4493-a419-3c29d0649f21",
"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": "05c32919-fc53-49d2-8ebf-0235117837dc",
"type": "catalog_entity_properties",
"attributes": {
"catalog_entity_id": "fee665d5-a365-4aa4-94ff-78f0f67f6834",
"catalog_field_id": "61145e02-ac99-4493-a419-3c29d0649f21",
"key": "text",
"value": "Test",
"deleted_at": null,
"updated_at": "2026-02-06T20:45:54.794-08:00",
"created_at": "2026-02-06T20:45:54.794-08:00"
},
"relationships": {
"catalog_entity": {
"data": {
"id": "fee665d5-a365-4aa4-94ff-78f0f67f6834",
"type": "catalog_entities"
}
},
"catalog_field": {
"data": {
"id": "61145e02-ac99-4493-a419-3c29d0649f21",
"type": "catalog_fields"
}
}
}
}
}