🔌 API Reference

Webhooks API

Configure and manage webhook endpoints for real-time notifications.

Create Webhook
Create a new webhook endpoint
POST/v1/webhooks
{
  "url": "https://yoursite.com/webhooks/payflow",
  "events": ["payment.succeeded", "payment.failed"]
}
List Webhooks
Retrieve a list of your webhook endpoints
GET/v1/webhooks
{
  "data": [
    {
      "id": "wh_1234567890",
      "url": "https://yoursite.com/webhooks/payflow",
      "status": "active",
      "events": ["payment.succeeded"]
    }
  ]
}