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": "f3cea8b8-077d-4f20-ae89-88209909bc05",
    "type": "catalog_entity_properties",
    "attributes": {
      "catalog_entity_id": "e3ca4ac3-c8d6-4053-a32d-e03d4ee9c1db",
      "catalog_field_id": "7771dca4-32c3-4aa7-80ef-b4a5dc15a941",
      "key": "text",
      "value": "Test",
      "deleted_at": null,
      "updated_at": "2025-07-11T12:22:33.615-07:00",
      "created_at": "2025-07-11T12:22:33.615-07:00"
    },
    "relationships": {
      "catalog_entity": {
        "data": {
          "id": "e3ca4ac3-c8d6-4053-a32d-e03d4ee9c1db",
          "type": "catalog_entities"
        }
      },
      "catalog_field": {
        "data": {
          "id": "7771dca4-32c3-4aa7-80ef-b4a5dc15a941",
          "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

200
application/vnd.api+json

catalog_entity_property found

The response is of type object.