GET
/
v1
/
catalog_entity_properties
/
{id}
curl --request GET \
  --url https://api.rootly.com/v1/catalog_entity_properties/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "2a1e1bf0-42bd-403d-b42d-ba7bc4410f04",
    "type": "catalog_entity_properties",
    "attributes": {
      "catalog_entity_id": "387b91d2-8fd3-4122-a69e-6784fc74ca3a",
      "catalog_field_id": "775b322d-8c10-4073-886d-33fd2666ca54",
      "key": "text",
      "value": "Test",
      "deleted_at": null,
      "updated_at": "2025-06-19T04:11:53.840-07:00",
      "created_at": "2025-06-19T04:11:53.840-07:00"
    },
    "relationships": {
      "catalog_entity": {
        "data": {
          "id": "387b91d2-8fd3-4122-a69e-6784fc74ca3a",
          "type": "catalog_entities"
        }
      },
      "catalog_field": {
        "data": {
          "id": "775b322d-8c10-4073-886d-33fd2666ca54",
          "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.