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": "6769be36-3021-4303-9ff0-9588a6691788",
    "type": "catalog_entity_properties",
    "attributes": {
      "catalog_entity_id": "a2bfb0ac-5caa-488f-9deb-63d023ed9936",
      "catalog_field_id": "27f19321-d0e3-44e1-b882-75414fb3b374",
      "key": "text",
      "value": "Test",
      "deleted_at": null,
      "updated_at": "2025-04-18T18:15:47.453-07:00",
      "created_at": "2025-04-18T18:15:47.453-07:00"
    },
    "relationships": {
      "catalog_entity": {
        "data": {
          "id": "a2bfb0ac-5caa-488f-9deb-63d023ed9936",
          "type": "catalog_entities"
        }
      },
      "catalog_field": {
        "data": {
          "id": "27f19321-d0e3-44e1-b882-75414fb3b374",
          "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
data
object
required