Integration
You have to redirect to the link which is returned in respomse data. In addition, you need to store the value of field reference and orderid for using api Verify Transaction.
Payout Transaction
POST https://borderlesspaymentng.com/api/payout
Headers
authorization*
String
Bearer YOUR_SECRET_KEY
content-type*
String
application/json
Request Body
amount*
String
amount
currency*
String
currency - NGN/KES/GHN
reference*
String
your transaction reference
receiver_name*
String
receiver name
sender_name*
String
sender name
email*
String
phone*
String
phone
receiver_address*
String
receiver address
sender_address*
String
sender address
bank_name*
String
bank name if type is BANK
bank_account_number*
String
bank account number if type is BANK
network_name*
String
name of mobile network if type is MOBILE
ip_address*
String
ip address
type*
string
BANK / MOBILE
webhook_url*
String
webhook url with method POST
{
"status" : "success",
"message" : "success",
"data":
{
"status" : "approved",
"message" : "Successfully deposited N100.00 to bank account ******1748. Transaction Id: NYHD0.",
"transaction" :
{
"reference" : "e5d7d46e76c378ba3b188648f964d824",
"orderid" : "NYHD0",
"bank_uuid" : "30AE3B3E-F20D-431F-959B-DDC9CEEE79A5",
"bank_account_number" : "7063861748",
"amount" : "100.00",
"fee" : 53.75,
"vat" : 3.75
}
}
}{
"status" : "failed",
"message" : "Bad Request"
}Last updated