Skip to main content
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": "4e321a78-8b62-4fec-9816-2ef18721b4bc",
    "type": "catalog_entity_properties",
    "attributes": {
      "catalog_entity_id": "f341548b-d103-4fa7-a188-9f2a457f1271",
      "catalog_field_id": "61d67a17-3741-42c1-ac9d-cb97b07f7c1e",
      "key": "text",
      "value": "Updated value",
      "deleted_at": null,
      "updated_at": "2025-12-05T21:22:54.781-08:00",
      "created_at": "2025-12-05T21:22:54.197-08:00"
    },
    "relationships": {
      "catalog_entity": {
        "data": {
          "id": "f341548b-d103-4fa7-a188-9f2a457f1271",
          "type": "catalog_entities"
        }
      },
      "catalog_field": {
        "data": {
          "id": "61d67a17-3741-42c1-ac9d-cb97b07f7c1e",
          "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

catalog_entity_property updated

data
object
required