v3
OpenAPI 3.1.02026-07-3182354.4 KBUpdate webhook endpoint
patch/v1/webhook-endpoints/{webhook_endpoint_id}
Path parameters
webhook_endpoint_idstring required
The ID of the webhook endpoint
Example:whe_2mKr8fQxLp7Ta3
Request body
Example request
{
"url": "https://example.com/granola-webhooks",
"scopes": [
"personal",
"public"
],
"events": [
"note.access_granted",
"note.edited",
"note.generated",
"note.regenerated"
],
"folder_ids": [
"fol_2mKr8fQxLp7Ta3"
],
"enabled": true
}Response
The updated webhook endpoint
Example response
{
"id": "whe_2mKr8fQxLp7Ta3",
"url": "https://example.com/granola-webhooks",
"events": [
"note.access_granted",
"note.edited",
"note.generated",
"note.regenerated"
],
"folder_ids": [],
"scopes": [
"personal",
"public"
],
"created_by": {
"name": "Oat Benson",
"email": "oat@granola.ai"
},
"enabled": true,
"created_at": "2026-01-27T15:30:00Z"
}