Payments through API (Demo with Postman)

POST generate checkout link for make payment
Headers
Accept application/json
Content-Type application/json
BODY formdata
private_key Merchant_private_key
currency Merchant_currency
is_fallback Accept(1 OR 0)
  • 1 = It will return fallback URl.
  • 0 = It willn't return fallback URl.
fallback_url http://domain.com/status
  • is_fallback = 1 then it will require.
is_test Accept(1 OR 0)
  • 1 = Sandbox Mode
  • 0 = Live Mode
amount 100
purpose testing purpose
data Any data you may want to use after payment is successful (Optional)
should_convert    Accept(1 OR 0) - Optional
  • If your product currency is in Dollar(USD), and your customers currency is in Naira(NGN), we convert Dollar to Naira, allowing your customer to pay in their currency
country_currency    Currency - Required if should_convert = 1
  • If should_convert = 1, provide the currency you wish to convert to, e.g NGN,GBP...

In body add private_key,currency,is_fallback,url,is_test,amount as key and their values from the credentials of merchant profile.




Checkout Page:





Success Response:





Failed:





Postman Documentation:

https://documenter.getpostman.com/view/15092464/TzRUCTDq