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": "4e38f696-3ce9-4d7f-8c00-1233dbc7d4cb",
"type": "catalog_entity_properties",
"attributes": {
"catalog_entity_id": "32d83621-568d-44c2-a63f-69bdee411df6",
"catalog_field_id": "6e31b28c-55e7-4c5e-9072-54561416a58f",
"key": "text",
"value": "Test",
"deleted_at": null,
"updated_at": "2025-09-10T22:58:52.235-07:00",
"created_at": "2025-09-10T22:58:52.235-07:00"
},
"relationships": {
"catalog_entity": {
"data": {
"id": "32d83621-568d-44c2-a63f-69bdee411df6",
"type": "catalog_entities"
}
},
"catalog_field": {
"data": {
"id": "6e31b28c-55e7-4c5e-9072-54561416a58f",
"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
The response is of type object
.
curl --request GET \
--url https://api.rootly.com/v1/catalog_entity_properties/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "4e38f696-3ce9-4d7f-8c00-1233dbc7d4cb",
"type": "catalog_entity_properties",
"attributes": {
"catalog_entity_id": "32d83621-568d-44c2-a63f-69bdee411df6",
"catalog_field_id": "6e31b28c-55e7-4c5e-9072-54561416a58f",
"key": "text",
"value": "Test",
"deleted_at": null,
"updated_at": "2025-09-10T22:58:52.235-07:00",
"created_at": "2025-09-10T22:58:52.235-07:00"
},
"relationships": {
"catalog_entity": {
"data": {
"id": "32d83621-568d-44c2-a63f-69bdee411df6",
"type": "catalog_entities"
}
},
"catalog_field": {
"data": {
"id": "6e31b28c-55e7-4c5e-9072-54561416a58f",
"type": "catalog_fields"
}
}
}
}
}