Dunmore

Webhooks API

Create and manage webhook endpoints for event delivery.

Webhooks deliver payment and system events to your server via HTTP POST.

List Webhooks

GET /api/projects/:projectId/webhooks

Create Webhook

POST /api/projects/:projectId/webhooks
FieldTypeRequiredDescription
urlstringYesYour webhook endpoint URL
eventTypesstring[]YesEvents to subscribe to

Update Webhook

PATCH /api/projects/:projectId/webhooks/:webhookId

Delete Webhook

DELETE /api/projects/:projectId/webhooks/:webhookId

Webhook Deliveries

GET /api/projects/:projectId/webhooks/:webhookId/deliveries

Returns delivery history including status codes, response times, and retry counts.