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

Authorizations

X-API-Key
string
header
required

Your Hrizn API key (prefix hzk_)

Body

application/json
url
string<uri>
required

HTTPS URL to receive webhooks

events
enum<string>[]
required
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

Response

Webhook created

data
object
Last modified on February 28, 2026