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": "fd9d8039-493a-40fc-a514-36eecba90964",
    "type": "catalog_entity_properties",
    "attributes": {
      "catalog_entity_id": "b92ee258-9b20-4460-b2b2-174168396342",
      "catalog_field_id": "b03e88c3-ba76-43b5-9b4c-353c9e24e60e",
      "key": "text",
      "value": "Updated value",
      "deleted_at": null,
      "updated_at": "2025-04-20T05:18:33.054-07:00",
      "created_at": "2025-04-20T05:18:31.749-07:00"
    },
    "relationships": {
      "catalog_entity": {
        "data": {
          "id": "b92ee258-9b20-4460-b2b2-174168396342",
          "type": "catalog_entities"
        }
      },
      "catalog_field": {
        "data": {
          "id": "b03e88c3-ba76-43b5-9b4c-353c9e24e60e",
          "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