Skip to main content
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": "5332c7cf-96c2-42f1-b13a-c802e80dace4",
    "type": "catalog_entity_properties",
    "attributes": {
      "catalog_entity_id": "cd4b9812-d901-4d65-95f2-d1b46714dcb4",
      "catalog_field_id": "a685c7a9-3461-4c9d-935a-d01d2db79789",
      "key": "text",
      "value": "Test",
      "deleted_at": null,
      "updated_at": "2025-12-10T16:51:30.165-08:00",
      "created_at": "2025-12-10T16:51:30.165-08:00"
    },
    "relationships": {
      "catalog_entity": {
        "data": {
          "id": "cd4b9812-d901-4d65-95f2-d1b46714dcb4",
          "type": "catalog_entities"
        }
      },
      "catalog_field": {
        "data": {
          "id": "a685c7a9-3461-4c9d-935a-d01d2db79789",
          "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

catalog_entity_property found

data
object
required