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": "6696f22e-9dd8-4b93-8211-dca676ec49a1",
    "type": "catalog_entity_properties",
    "attributes": {
      "catalog_entity_id": "9c42a2a0-c5e4-4abd-a40b-cfa64dc51c0c",
      "catalog_field_id": "d99944b3-303c-458a-ad9a-20b3d6b1ebbc",
      "key": "text",
      "value": "Test",
      "deleted_at": null,
      "updated_at": "2025-11-14T13:11:28.318-08:00",
      "created_at": "2025-11-14T13:11:28.318-08:00"
    },
    "relationships": {
      "catalog_entity": {
        "data": {
          "id": "9c42a2a0-c5e4-4abd-a40b-cfa64dc51c0c",
          "type": "catalog_entities"
        }
      },
      "catalog_field": {
        "data": {
          "id": "d99944b3-303c-458a-ad9a-20b3d6b1ebbc",
          "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