PUT
/
v1
/
catalog_entity_properties
/
{id}
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": "05f40d06-9c37-473b-966d-8f1d41a07ff0",
    "type": "catalog_entity_properties",
    "attributes": {
      "catalog_entity_id": "e5ac9649-01fb-4998-824b-22a83cb31d34",
      "catalog_field_id": "68b725b2-bc8e-42a2-8eca-39a552287c64",
      "key": "text",
      "value": "Updated value",
      "deleted_at": null,
      "updated_at": "2025-07-01T23:32:47.671-07:00",
      "created_at": "2025-07-01T23:32:46.390-07:00"
    },
    "relationships": {
      "catalog_entity": {
        "data": {
          "id": "e5ac9649-01fb-4998-824b-22a83cb31d34",
          "type": "catalog_entities"
        }
      },
      "catalog_field": {
        "data": {
          "id": "68b725b2-bc8e-42a2-8eca-39a552287c64",
          "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.