cURL
curl --request PATCH \ --url https://app.oneform.one/api/v1/webhooks/{webhook_id} \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "name": "Updated Webhook Name", "url": "https://example.com/webhook-updated", "signing_secret": "new_secret_key", "enabled": false } '
{ "id": "webhook_123", "name": "My Webhook", "form_id": "form_123", "url": "https://example.com/webhook", "signing_secret": "secret_key", "enabled": true, "subscriber": "n8n", "created_at": "2024-01-01T12:00:00Z", "updated_at": "2024-01-02T12:00:00Z" }
Enter your API key
Webhook ID
"Updated Webhook Name"
"https://example.com/webhook-updated"
"new_secret_key"
false
webhook updated
"webhook_123"
"My Webhook"
"form_123"
"https://example.com/webhook"
"secret_key"
true
"n8n"
"2024-01-01T12:00:00Z"
"2024-01-02T12:00:00Z"