v1
latestOpenAPI 3.1.02026-07-26359254.7 MBWebhooks
Update a webhook subscription
<small>Requires the webhooks:write scope (or a broader one that includes it).</small>
Full replacement of the mutable fields of an existing subscription. organization scope is rejected with code: webHook.organizationScopeNotImplemented.
put/v3/webhooks/{id}
Path parameters
idinteger required
Webhook subscription ID.
Request body
Example request
{
"eventType": "email_replied",
"url": "https://example.com/hooks/reply-v2",
"scope": "personal",
"payloadConfig": {
"includeEmailUrl": true,
"includeEmailText": true,
"includeProspectCustomFields": true
}
}Response
Webhook subscription updated successfully.
Example response
{
"id": 1823,
"eventType": "email_replied",
"url": "https://example.com/hooks/reply",
"scope": "personal",
"enabled": true,
"createdAt": "2026-04-17T12:00:00+00:00",
"payloadConfig": {
"includeEmailUrl": true,
"includeEmailText": false,
"includeProspectCustomFields": true
}
}