Skip to main content
GET
/
v1
/
catalog_entity_properties
/
{id}
Retrieves a Catalog Entity Property
curl --request GET \
  --url https://api.rootly.com/v1/catalog_entity_properties/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "c26c7fb7-109b-4557-9358-5b61a920585a",
    "type": "catalog_entity_properties",
    "attributes": {
      "catalog_entity_id": "b98b5181-a35e-4ee9-a92e-59f412d1c221",
      "catalog_field_id": "773ce635-3d4f-488a-8eca-727709502e0f",
      "key": "text",
      "value": "Test",
      "deleted_at": null,
      "updated_at": "2025-10-31T18:53:41.303-07:00",
      "created_at": "2025-10-31T18:53:41.303-07:00"
    },
    "relationships": {
      "catalog_entity": {
        "data": {
          "id": "b98b5181-a35e-4ee9-a92e-59f412d1c221",
          "type": "catalog_entities"
        }
      },
      "catalog_field": {
        "data": {
          "id": "773ce635-3d4f-488a-8eca-727709502e0f",
          "type": "catalog_fields"
        }
      }
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Query Parameters

include
enum<string>

comma separated if needed. eg: catalog_entity,catalog_field

Available options:
catalog_entity,
catalog_field

Response

catalog_entity_property found

data
object
required