v1
latestOpenAPI 3.1.02026-07-26359254.7 MBWebhooks
Create a webhook subscription
<small>Requires the webhooks:write scope (or a broader one that includes it).</small>
Creates a new webhook subscription for the authenticated user.
scope defaults to personal when omitted. team-scope subscriptions are accepted only when policy allows: any member may create them for public teams or organization mode; only the team owner may create them for private teams.
Attempting to create an organization-scope subscription is rejected with code: webHook.organizationScopeNotImplemented — the value is reserved for future use.
post/v3/webhooks
Request body
Example request
{
"eventType": "email_replied",
"url": "https://example.com/hooks/reply",
"scope": "personal",
"enabled": true,
"payloadConfig": {
"includeEmailUrl": true,
"includeEmailText": false,
"includeProspectCustomFields": true
}
}Response
Webhook subscription created 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
}
}