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": "bb750630-d4df-473f-a58c-00c7c646ef48",
    "type": "catalog_entity_properties",
    "attributes": {
      "catalog_entity_id": "22706a39-3bdf-4e38-9330-7cb366a52706",
      "catalog_field_id": "d917cf0e-ead4-456f-b3aa-09ec0004b4af",
      "key": "text",
      "value": "Test",
      "deleted_at": null,
      "updated_at": "2025-12-03T15:44:24.582-08:00",
      "created_at": "2025-12-03T15:44:24.582-08:00"
    },
    "relationships": {
      "catalog_entity": {
        "data": {
          "id": "22706a39-3bdf-4e38-9330-7cb366a52706",
          "type": "catalog_entities"
        }
      },
      "catalog_field": {
        "data": {
          "id": "d917cf0e-ead4-456f-b3aa-09ec0004b4af",
          "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