curl --request POST \
--url https://instance.prod.onboardapp.io/v1/webhooks \
--header 'Content-Type: application/json' \
--header 'X-API-KEY: <api-key>' \
--data '
{
"url": "<string>",
"events": [
"<string>"
]
}
'{
"data": {
"id": "<string>",
"url": "<string>",
"events": [
"case.created"
],
"status": "active",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
},
"meta": {
"request_id": "req_9k4m2n1p3q",
"page": {
"cursor": "<string>",
"has_more": true
}
}
}Register a new webhook endpoint to receive event notifications. The endpoint must be HTTPS and respond to a verification challenge before activation.
After registration, a webhook secret is returned for signature verification. Store this secret securely — it cannot be retrieved again.
curl --request POST \
--url https://instance.prod.onboardapp.io/v1/webhooks \
--header 'Content-Type: application/json' \
--header 'X-API-KEY: <api-key>' \
--data '
{
"url": "<string>",
"events": [
"<string>"
]
}
'{
"data": {
"id": "<string>",
"url": "<string>",
"events": [
"case.created"
],
"status": "active",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
},
"meta": {
"request_id": "req_9k4m2n1p3q",
"page": {
"cursor": "<string>",
"has_more": true
}
}
}Project-scoped API key for server-to-server authentication. Obtain keys from the Zenoo dashboard under Project Settings > API Keys. Staging and production environments use separate keys.
Unique key for idempotent request handling. If a request with the same key was already processed within the last 24 hours, the original response is returned.
Webhook registered. Store the secret — it is only returned once.