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": "05c32919-fc53-49d2-8ebf-0235117837dc",
    "type": "catalog_entity_properties",
    "attributes": {
      "catalog_entity_id": "fee665d5-a365-4aa4-94ff-78f0f67f6834",
      "catalog_field_id": "61145e02-ac99-4493-a419-3c29d0649f21",
      "key": "text",
      "value": "Test",
      "deleted_at": null,
      "updated_at": "2026-02-06T20:45:54.794-08:00",
      "created_at": "2026-02-06T20:45:54.794-08:00"
    },
    "relationships": {
      "catalog_entity": {
        "data": {
          "id": "fee665d5-a365-4aa4-94ff-78f0f67f6834",
          "type": "catalog_entities"
        }
      },
      "catalog_field": {
        "data": {
          "id": "61145e02-ac99-4493-a419-3c29d0649f21",
          "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