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": "5332c7cf-96c2-42f1-b13a-c802e80dace4",
"type": "catalog_entity_properties",
"attributes": {
"catalog_entity_id": "cd4b9812-d901-4d65-95f2-d1b46714dcb4",
"catalog_field_id": "a685c7a9-3461-4c9d-935a-d01d2db79789",
"key": "text",
"value": "Test",
"deleted_at": null,
"updated_at": "2025-12-10T16:51:30.165-08:00",
"created_at": "2025-12-10T16:51:30.165-08:00"
},
"relationships": {
"catalog_entity": {
"data": {
"id": "cd4b9812-d901-4d65-95f2-d1b46714dcb4",
"type": "catalog_entities"
}
},
"catalog_field": {
"data": {
"id": "a685c7a9-3461-4c9d-935a-d01d2db79789",
"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
Unique ID of the catalog_entity_property
catalog_entity_properties 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": "5332c7cf-96c2-42f1-b13a-c802e80dace4",
"type": "catalog_entity_properties",
"attributes": {
"catalog_entity_id": "cd4b9812-d901-4d65-95f2-d1b46714dcb4",
"catalog_field_id": "a685c7a9-3461-4c9d-935a-d01d2db79789",
"key": "text",
"value": "Test",
"deleted_at": null,
"updated_at": "2025-12-10T16:51:30.165-08:00",
"created_at": "2025-12-10T16:51:30.165-08:00"
},
"relationships": {
"catalog_entity": {
"data": {
"id": "cd4b9812-d901-4d65-95f2-d1b46714dcb4",
"type": "catalog_entities"
}
},
"catalog_field": {
"data": {
"id": "a685c7a9-3461-4c9d-935a-d01d2db79789",
"type": "catalog_fields"
}
}
}
}
}