Skip to main content

Webhooks API

List Webhooks

GET /api/webhooks
Authorization: Bearer TOKEN

Create Webhook

POST /api/webhooks
Authorization: Bearer TOKEN
Content-Type: application/json

{
"name": "stripe-webhook",
"forwardUrl": "http://localhost:4000/webhook"
}

Get Webhook

GET /api/webhooks/:id
Authorization: Bearer TOKEN

Get Webhook Logs

GET /api/webhooks/:id/logs
Authorization: Bearer TOKEN

Delete Webhook

DELETE /api/webhooks/:id
Authorization: Bearer TOKEN