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": "7b7a367a-f1af-446a-870e-bda697ef5db0",
    "type": "catalog_entity_properties",
    "attributes": {
      "catalog_entity_id": "1cca883a-79d8-4fc9-9f01-34727ebff790",
      "catalog_field_id": "4adb9165-7841-4d22-a85d-8c3b7080ae05",
      "key": "text",
      "value": "Updated value",
      "deleted_at": null,
      "updated_at": "2025-09-01T09:41:20.357-07:00",
      "created_at": "2025-09-01T09:41:19.682-07:00"
    },
    "relationships": {
      "catalog_entity": {
        "data": {
          "id": "1cca883a-79d8-4fc9-9f01-34727ebff790",
          "type": "catalog_entities"
        }
      },
      "catalog_field": {
        "data": {
          "id": "4adb9165-7841-4d22-a85d-8c3b7080ae05",
          "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.