GET
/
v1
/
catalog_entity_properties
/
{id}
curl --request GET \
  --url 'https://api.rootly.com/v1/catalog_entity_properties/%7Bid%7D?include=SOME_STRING_VALUE' \
  --header 'Authorization: Bearer REPLACE_BEARER_TOKEN'
{
  "data": {
    "id": "5ab482b1-b51c-481e-a5e2-bf5f1932b99f",
    "type": "catalog_entity_properties",
    "attributes": {
      "catalog_entity_id": "b221ecd8-41fc-43e4-917c-b5f89f8ef846",
      "catalog_field_id": "15cd7493-406f-47ff-811a-c4a143b82cbb",
      "key": "text",
      "value": "Test",
      "deleted_at": null,
      "updated_at": "2025-03-13T11:59:19.470-07:00",
      "created_at": "2025-03-13T11:59:19.470-07:00"
    },
    "relationships": {
      "catalog_entity": {
        "data": {
          "id": "b221ecd8-41fc-43e4-917c-b5f89f8ef846",
          "type": "catalog_entities"
        }
      },
      "catalog_field": {
        "data": {
          "id": "15cd7493-406f-47ff-811a-c4a143b82cbb",
          "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