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": "8441123b-1980-4982-87d6-67aa0663a8d9",
    "type": "catalog_entity_properties",
    "attributes": {
      "catalog_entity_id": "853e2214-5dfd-4685-8645-6a794163adb9",
      "catalog_field_id": "9bb944f6-3ee0-4956-9a9a-3991564462ea",
      "key": "text",
      "value": "Updated value",
      "deleted_at": null,
      "updated_at": "2025-03-26T23:18:05.909-07:00",
      "created_at": "2025-03-26T23:18:04.575-07:00"
    },
    "relationships": {
      "catalog_entity": {
        "data": {
          "id": "853e2214-5dfd-4685-8645-6a794163adb9",
          "type": "catalog_entities"
        }
      },
      "catalog_field": {
        "data": {
          "id": "9bb944f6-3ee0-4956-9a9a-3991564462ea",
          "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
data
object
required

Response

200
application/vnd.api+json
catalog_entity_property updated
data
object
required

Was this page helpful?