Skip to main content
PUT
/
v1
/
catalog_entity_properties
/
{id}
Update a Catalog Entity Property
curl --request PUT \
  --url https://api.rootly.com/v1/catalog_entity_properties/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/vnd.api+json' \
  --data '
{
  "data": {
    "type": "catalog_entity_properties",
    "attributes": {
      "key": "text",
      "value": "<string>"
    }
  }
}
'
{
  "data": {
    "id": "af900f87-64d1-4b8c-89ec-540ecb850bb8",
    "type": "catalog_entity_properties",
    "attributes": {
      "catalog_entity_id": "1eba400d-2cd6-4989-9b41-adcbf05208d5",
      "catalog_field_id": "21e7140f-fd15-4b88-aacf-14236c75a45e",
      "key": "text",
      "value": "Updated value",
      "deleted_at": null,
      "updated_at": "2026-01-20T05:24:07.032-08:00",
      "created_at": "2026-01-20T05:24:06.049-08:00"
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Body

application/vnd.api+json
data
object
required

Response

catalog_entity_property updated

data
object
required