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": "a5973f6f-a10a-42eb-8e11-42dca2a6f937",
    "type": "catalog_entity_properties",
    "attributes": {
      "catalog_entity_id": "6422ac31-2c4b-4f55-ba08-9ee06843da4f",
      "catalog_field_id": "c179edeb-d06f-46c4-b3aa-70708d80c929",
      "key": "text",
      "value": "Test",
      "deleted_at": null,
      "updated_at": "2025-09-18T09:15:57.446-07:00",
      "created_at": "2025-09-18T09:15:57.446-07:00"
    },
    "relationships": {
      "catalog_entity": {
        "data": {
          "id": "6422ac31-2c4b-4f55-ba08-9ee06843da4f",
          "type": "catalog_entities"
        }
      },
      "catalog_field": {
        "data": {
          "id": "c179edeb-d06f-46c4-b3aa-70708d80c929",
          "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