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": "d4021890-5234-4ad5-9207-42b831c62f91",
"type": "catalog_entity_properties",
"attributes": {
"catalog_entity_id": "785a33c9-79d6-47ab-bec1-cc17c9a2c8af",
"catalog_field_id": "3ed5ff81-848d-40be-a9b8-3431ddb7e34f",
"key": "text",
"value": "Test",
"deleted_at": null,
"updated_at": "2025-08-21T23:30:19.878-07:00",
"created_at": "2025-08-21T23:30:19.878-07:00"
},
"relationships": {
"catalog_entity": {
"data": {
"id": "785a33c9-79d6-47ab-bec1-cc17c9a2c8af",
"type": "catalog_entities"
}
},
"catalog_field": {
"data": {
"id": "3ed5ff81-848d-40be-a9b8-3431ddb7e34f",
"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": "d4021890-5234-4ad5-9207-42b831c62f91",
"type": "catalog_entity_properties",
"attributes": {
"catalog_entity_id": "785a33c9-79d6-47ab-bec1-cc17c9a2c8af",
"catalog_field_id": "3ed5ff81-848d-40be-a9b8-3431ddb7e34f",
"key": "text",
"value": "Test",
"deleted_at": null,
"updated_at": "2025-08-21T23:30:19.878-07:00",
"created_at": "2025-08-21T23:30:19.878-07:00"
},
"relationships": {
"catalog_entity": {
"data": {
"id": "785a33c9-79d6-47ab-bec1-cc17c9a2c8af",
"type": "catalog_entities"
}
},
"catalog_field": {
"data": {
"id": "3ed5ff81-848d-40be-a9b8-3431ddb7e34f",
"type": "catalog_fields"
}
}
}
}
}