IZZIPAYDevelopers
Transfers API
Move money between accounts, wallets, and external destinations.
Base URL: https://api.izzipay.com/v1/transfers
POST
/v1/transfersCreate a transfer
Request Body
json
{ "from": "wal_abc", "to": "wal_xyz", "amount": 2000, "currency": "USD" }cURL
bash
curl -X POST https://api.izzipay.com/v1/transfers \
-H "Authorization: Bearer sk_test_..." \
-H "Content-Type: application/json" \
-d '{ "from": "wal_abc", "to": "wal_xyz", "amount": 2000, "currency": "USD" }'GET
/v1/transfers/:idGet transfer status
cURL
bash
curl -X GET https://api.izzipay.com/v1/transfers/:id \
-H "Authorization: Bearer sk_test_..." \
-H "Content-Type: application/json"GET
/v1/transfersList transfers
cURL
bash
curl -X GET https://api.izzipay.com/v1/transfers \
-H "Authorization: Bearer sk_test_..." \
-H "Content-Type: application/json"POST
/v1/transfers/bankBank transfer
cURL
bash
curl -X POST https://api.izzipay.com/v1/transfers/bank \
-H "Authorization: Bearer sk_test_..." \
-H "Content-Type: application/json"POST
/v1/transfers/mobileMobile money transfer
cURL
bash
curl -X POST https://api.izzipay.com/v1/transfers/mobile \
-H "Authorization: Bearer sk_test_..." \
-H "Content-Type: application/json"POST
/v1/transfers/bulkBulk transfers
cURL
bash
curl -X POST https://api.izzipay.com/v1/transfers/bulk \
-H "Authorization: Bearer sk_test_..." \
-H "Content-Type: application/json"POST
/v1/transfers/:id/cancelCancel pending transfer
cURL
bash
curl -X POST https://api.izzipay.com/v1/transfers/:id/cancel \
-H "Authorization: Bearer sk_test_..." \
-H "Content-Type: application/json"GET
/v1/transfers/:id/receiptGet transfer receipt
cURL
bash
curl -X GET https://api.izzipay.com/v1/transfers/:id/receipt \
-H "Authorization: Bearer sk_test_..." \
-H "Content-Type: application/json"