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": "b3d764ff-9265-42b7-aa85-fa40ac070baf",
    "type": "catalog_entity_properties",
    "attributes": {
      "catalog_entity_id": "df683822-e6f7-4f53-b875-8abdf6f26c2d",
      "catalog_field_id": "e9f9d289-106d-4627-af70-4a1e1e3986c0",
      "key": "text",
      "value": "Test",
      "deleted_at": null,
      "updated_at": "2025-11-21T14:28:17.122-08:00",
      "created_at": "2025-11-21T14:28:17.122-08:00"
    },
    "relationships": {
      "catalog_entity": {
        "data": {
          "id": "df683822-e6f7-4f53-b875-8abdf6f26c2d",
          "type": "catalog_entities"
        }
      },
      "catalog_field": {
        "data": {
          "id": "e9f9d289-106d-4627-af70-4a1e1e3986c0",
          "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