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": "548879f8-e5f7-4e60-9bfd-03abb59a7e0d",
    "type": "catalog_entity_properties",
    "attributes": {
      "catalog_entity_id": "a3bf63ff-2af1-4d1e-91ed-6b88d50054f2",
      "catalog_field_id": "0ccf7092-2b29-4291-b0ba-22883f8cec32",
      "key": "text",
      "value": "Updated value",
      "deleted_at": null,
      "updated_at": "2025-08-12T07:19:21.584-07:00",
      "created_at": "2025-08-12T07:19:20.798-07:00"
    },
    "relationships": {
      "catalog_entity": {
        "data": {
          "id": "a3bf63ff-2af1-4d1e-91ed-6b88d50054f2",
          "type": "catalog_entities"
        }
      },
      "catalog_field": {
        "data": {
          "id": "0ccf7092-2b29-4291-b0ba-22883f8cec32",
          "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

Body

application/vnd.api+json

Response

200
application/vnd.api+json

catalog_entity_property updated

The response is of type object.