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": "2bd0303b-80dd-4c4d-b27e-a3ac4781aa31",
"type": "catalog_entity_properties",
"attributes": {
"catalog_entity_id": "d7092b07-7b60-4ce5-b214-fb20b27313b6",
"catalog_field_id": "94e4b2da-5e2c-4ee1-89a7-d6d2182de109",
"key": "text",
"value": "Test",
"deleted_at": null,
"updated_at": "2025-08-01T01:54:31.271-07:00",
"created_at": "2025-08-01T01:54:31.271-07:00"
},
"relationships": {
"catalog_entity": {
"data": {
"id": "d7092b07-7b60-4ce5-b214-fb20b27313b6",
"type": "catalog_entities"
}
},
"catalog_field": {
"data": {
"id": "94e4b2da-5e2c-4ee1-89a7-d6d2182de109",
"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": "2bd0303b-80dd-4c4d-b27e-a3ac4781aa31",
"type": "catalog_entity_properties",
"attributes": {
"catalog_entity_id": "d7092b07-7b60-4ce5-b214-fb20b27313b6",
"catalog_field_id": "94e4b2da-5e2c-4ee1-89a7-d6d2182de109",
"key": "text",
"value": "Test",
"deleted_at": null,
"updated_at": "2025-08-01T01:54:31.271-07:00",
"created_at": "2025-08-01T01:54:31.271-07:00"
},
"relationships": {
"catalog_entity": {
"data": {
"id": "d7092b07-7b60-4ce5-b214-fb20b27313b6",
"type": "catalog_entities"
}
},
"catalog_field": {
"data": {
"id": "94e4b2da-5e2c-4ee1-89a7-d6d2182de109",
"type": "catalog_fields"
}
}
}
}
}