Confirm ownership of a pending webhook by submitting the 6-character verificationCode the server included in the POST during activation POST /v2/webhooks (or PATCH /v2/webhooks/{webhookId} when reactivation was triggered)
The verification code was delivered to the webhook's configured url; retrieve it from your endpoint's request log or capture buffer.
On success, the webhook transitions to active -- the stored activationCode and last-handshake response are cleared. Error 404 is returned if the webhook does not exist, was soft-deleted, or belongs to another client; 400 if the webhook is already active, or if the submitted code does not match.
To prevent code-enumeration probes revealing whether a webhook is already activated, the already-active check is performed before the code comparison.
Note : The webhook "Id" was delivered in the 201 status response body during webhook creation
Authorization
apiKey & clientIdheader
header
Path Parameters
webhookId*string
Unique identifier for the webhook.