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": "b99505f4-79f6-4ea1-a628-33248cb13569",
    "type": "catalog_entity_properties",
    "attributes": {
      "catalog_entity_id": "279acc03-7d9f-4cc3-a5b8-664a7827c1b0",
      "catalog_field_id": "6e59ab5c-e4d6-4ef4-b245-82715418beb9",
      "key": "text",
      "value": "Updated value",
      "deleted_at": null,
      "updated_at": "2025-06-19T02:37:50.795-07:00",
      "created_at": "2025-06-19T02:37:49.647-07:00"
    },
    "relationships": {
      "catalog_entity": {
        "data": {
          "id": "279acc03-7d9f-4cc3-a5b8-664a7827c1b0",
          "type": "catalog_entities"
        }
      },
      "catalog_field": {
        "data": {
          "id": "6e59ab5c-e4d6-4ef4-b245-82715418beb9",
          "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.