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": "36e5f45e-1281-45d0-b87a-0dadf999f2a6",
    "type": "catalog_entity_properties",
    "attributes": {
      "catalog_entity_id": "71a2cce4-3141-42c3-95fd-da3252e90920",
      "catalog_field_id": "a9cf72ed-bdcb-4062-b49c-d079c968039e",
      "key": "text",
      "value": "Test",
      "deleted_at": null,
      "updated_at": "2025-03-19T17:36:33.061-07:00",
      "created_at": "2025-03-19T17:36:33.061-07:00"
    },
    "relationships": {
      "catalog_entity": {
        "data": {
          "id": "71a2cce4-3141-42c3-95fd-da3252e90920",
          "type": "catalog_entities"
        }
      },
      "catalog_field": {
        "data": {
          "id": "a9cf72ed-bdcb-4062-b49c-d079c968039e",
          "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

Was this page helpful?