IZZIPAYDevelopers

Webhooks API

Manage webhook endpoints and events.

Base URL: https://api.izzipay.com/v1/developer/webhooks

POST/v1/developer/webhooks

Create webhook

cURL

bash
curl -X POST https://api.izzipay.com/v1/developer/webhooks \
  -H "Authorization: Bearer sk_test_..." \
  -H "Content-Type: application/json"
GET/v1/developer/webhooks

List webhooks

cURL

bash
curl -X GET https://api.izzipay.com/v1/developer/webhooks \
  -H "Authorization: Bearer sk_test_..." \
  -H "Content-Type: application/json"
DELETE/v1/developer/webhooks/:id

Delete webhook

cURL

bash
curl -X DELETE https://api.izzipay.com/v1/developer/webhooks/:id \
  -H "Authorization: Bearer sk_test_..." \
  -H "Content-Type: application/json"
POST/v1/developer/webhooks/:id/test

Test webhook

cURL

bash
curl -X POST https://api.izzipay.com/v1/developer/webhooks/:id/test \
  -H "Authorization: Bearer sk_test_..." \
  -H "Content-Type: application/json"