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": "438edc5d-693f-4940-8f8f-6032f97cdf35",
    "type": "catalog_entity_properties",
    "attributes": {
      "catalog_entity_id": "f2faf684-a81b-43bc-9ad9-291e66ac1ce2",
      "catalog_field_id": "0bc2535d-0003-4fe4-aa42-8446afe5368b",
      "key": "text",
      "value": "Test",
      "deleted_at": null,
      "updated_at": "2025-10-08T19:31:08.553-07:00",
      "created_at": "2025-10-08T19:31:08.553-07:00"
    },
    "relationships": {
      "catalog_entity": {
        "data": {
          "id": "f2faf684-a81b-43bc-9ad9-291e66ac1ce2",
          "type": "catalog_entities"
        }
      },
      "catalog_field": {
        "data": {
          "id": "0bc2535d-0003-4fe4-aa42-8446afe5368b",
          "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
I