IZZIPAYDevelopers
Webhooks API
Manage webhook endpoints and events.
Base URL: https://api.izzipay.com/v1/developer/webhooks
POST
/v1/developer/webhooksCreate 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/webhooksList 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/:idDelete 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/testTest 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"