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": "cf38924c-5274-44bd-a70b-c632a28ee8ad",
"type": "catalog_entity_properties",
"attributes": {
"catalog_entity_id": "2c9dc68f-c8de-4aa9-8fe2-2ae51316e790",
"catalog_field_id": "ecb4ec33-bfd6-4032-9ce1-9a1e4f6e2e50",
"key": "text",
"value": "Test",
"deleted_at": null,
"updated_at": "2026-02-17T18:08:01.172-08:00",
"created_at": "2026-02-17T18:08:01.172-08:00"
},
"relationships": {
"catalog_entity": {
"data": {
"id": "2c9dc68f-c8de-4aa9-8fe2-2ae51316e790",
"type": "catalog_entities"
}
},
"catalog_field": {
"data": {
"id": "ecb4ec33-bfd6-4032-9ce1-9a1e4f6e2e50",
"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": "cf38924c-5274-44bd-a70b-c632a28ee8ad",
"type": "catalog_entity_properties",
"attributes": {
"catalog_entity_id": "2c9dc68f-c8de-4aa9-8fe2-2ae51316e790",
"catalog_field_id": "ecb4ec33-bfd6-4032-9ce1-9a1e4f6e2e50",
"key": "text",
"value": "Test",
"deleted_at": null,
"updated_at": "2026-02-17T18:08:01.172-08:00",
"created_at": "2026-02-17T18:08:01.172-08:00"
},
"relationships": {
"catalog_entity": {
"data": {
"id": "2c9dc68f-c8de-4aa9-8fe2-2ae51316e790",
"type": "catalog_entities"
}
},
"catalog_field": {
"data": {
"id": "ecb4ec33-bfd6-4032-9ce1-9a1e4f6e2e50",
"type": "catalog_fields"
}
}
}
}
}