Authorizations
Path Parameters
Query Parameters
Available options:
catalog_entity, catalog_field 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": "1dd4dd6c-f394-4470-a985-60c8dc66b1fb",
"type": "catalog_entity_properties",
"attributes": {
"catalog_entity_id": "5f5733e0-5e10-42c8-b30c-0f58e7d85ea6",
"catalog_field_id": "bddad102-735d-462d-b5e6-8b36035fa62f",
"key": "text",
"value": "Test",
"deleted_at": null,
"updated_at": "2025-11-28T18:07:30.872-08:00",
"created_at": "2025-11-28T18:07:30.872-08:00"
},
"relationships": {
"catalog_entity": {
"data": {
"id": "5f5733e0-5e10-42c8-b30c-0f58e7d85ea6",
"type": "catalog_entities"
}
},
"catalog_field": {
"data": {
"id": "bddad102-735d-462d-b5e6-8b36035fa62f",
"type": "catalog_fields"
}
}
}
}
}catalog_entity, catalog_field 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": "1dd4dd6c-f394-4470-a985-60c8dc66b1fb",
"type": "catalog_entity_properties",
"attributes": {
"catalog_entity_id": "5f5733e0-5e10-42c8-b30c-0f58e7d85ea6",
"catalog_field_id": "bddad102-735d-462d-b5e6-8b36035fa62f",
"key": "text",
"value": "Test",
"deleted_at": null,
"updated_at": "2025-11-28T18:07:30.872-08:00",
"created_at": "2025-11-28T18:07:30.872-08:00"
},
"relationships": {
"catalog_entity": {
"data": {
"id": "5f5733e0-5e10-42c8-b30c-0f58e7d85ea6",
"type": "catalog_entities"
}
},
"catalog_field": {
"data": {
"id": "bddad102-735d-462d-b5e6-8b36035fa62f",
"type": "catalog_fields"
}
}
}
}
}