Skip to main content
PATCH
/
webhooks
/
{id}
Update webhook subscription
curl --request PATCH \
  --url https://api.app.hrizn.io/v1/public/webhooks/{id} \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "url": "<string>",
  "events": [
    "ideacloud.completed"
  ],
  "is_active": true
}
'
{
  "data": {
    "id": "<string>",
    "url": "<string>",
    "events": [
      "<string>"
    ],
    "is_active": true,
    "updated_at": "2023-11-07T05:31:56Z"
  }
}

Authorizations

X-API-Key
string
header
required

Your Hrizn API key (prefix hzk_)

Path Parameters

id
string
required

Webhook subscription ID

Body

application/json
url
string<uri>
events
enum<string>[]
Minimum array length: 1
Available options:
ideacloud.completed,
ideacloud.failed,
content.progress,
content.completed,
content.failed,
content.approval.submitted,
content.approval.approved,
content.approval.rejected,
content.approval.escalated,
content.approval.overridden,
compliance.completed,
content_tools.completed,
inventory.description.completed,
inventory.description.batch_completed,
inventory.feed.updated
is_active
boolean

Response

Webhook updated

data
object
Last modified on March 1, 2026