IZZIPAYDevelopers
Merchants API
Onboard and manage merchant accounts.
Base URL: https://api.izzipay.com/v1/merchants
POST
/v1/merchantsRegister merchant
cURL
bash
curl -X POST https://api.izzipay.com/v1/merchants \
-H "Authorization: Bearer sk_test_..." \
-H "Content-Type: application/json"GET
/v1/merchants/:idGet merchant details
cURL
bash
curl -X GET https://api.izzipay.com/v1/merchants/:id \
-H "Authorization: Bearer sk_test_..." \
-H "Content-Type: application/json"PUT
/v1/merchants/:idUpdate merchant
cURL
bash
curl -X PUT https://api.izzipay.com/v1/merchants/:id \
-H "Authorization: Bearer sk_test_..." \
-H "Content-Type: application/json"GET
/v1/merchants/:id/transactionsMerchant transactions
cURL
bash
curl -X GET https://api.izzipay.com/v1/merchants/:id/transactions \
-H "Authorization: Bearer sk_test_..." \
-H "Content-Type: application/json"POST
/v1/merchants/:id/settleTrigger settlement
cURL
bash
curl -X POST https://api.izzipay.com/v1/merchants/:id/settle \
-H "Authorization: Bearer sk_test_..." \
-H "Content-Type: application/json"GET
/v1/merchants/:id/balanceGet merchant balance
cURL
bash
curl -X GET https://api.izzipay.com/v1/merchants/:id/balance \
-H "Authorization: Bearer sk_test_..." \
-H "Content-Type: application/json"