Bank Account Payments
POST
https://seerbitapi.com/api/v2/payments/initiates
curl --location 'https://seerbitapi.com/api/v2/payments/initiates' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_ENCRYPTION_KEY' \
--data-raw '{
"publicKey":"Your_public_key",
"amount":"2000.00",
"fee":"10",
"fullName":"John Doe",
"mobileNumber":"08037456590",
"currency":"NGN",
"country":"NG",
"paymentReference":"UYTRE234566677RDFGFDDSS",
"email":"johndoe@gmail.com",
"productId":"Foods",
"productDescription":"Uba Account Transaction ",
"clientAppCode":"kpp64",
"redirectUrl":"https://checkout.seerbit.com",
}'
{
"status": "SUCCESS",
"data": {
"code": "S20",
"payments": {
"paymentReference": "UYTRE234566677RDFGFDDSS",
"linkingReference": "F320660611587911267617"
},
"message": "Transaction is pending"
}
}
Last updated