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": "6ed42036-f8f3-4fc5-9dd8-940e0c0b1c88",
    "type": "catalog_entity_properties",
    "attributes": {
      "catalog_entity_id": "3e37aaf4-b487-4e64-b8ab-5e3d7546481d",
      "catalog_field_id": "ad77d7cb-9cbc-4a7e-b776-727b4405edb8",
      "key": "text",
      "value": "Updated value",
      "deleted_at": null,
      "updated_at": "2025-05-29T17:40:57.294-07:00",
      "created_at": "2025-05-29T17:40:55.927-07:00"
    },
    "relationships": {
      "catalog_entity": {
        "data": {
          "id": "3e37aaf4-b487-4e64-b8ab-5e3d7546481d",
          "type": "catalog_entities"
        }
      },
      "catalog_field": {
        "data": {
          "id": "ad77d7cb-9cbc-4a7e-b776-727b4405edb8",
          "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.