Bank Transfers
Initiate a bank transfer payment.
Initialization
The initialization data is similar to the one in the card payment channel.
POST /payment-sessionsSample Request
{
"customer": {
"first_name": "John",
"last_name": "Doe",
"email": "john.doe@example.com",
"phone_number": "+2348000000000",
"billing_address": {
"line1": "123 Main St",
"line2": "off tomasz street",
"city": "Ikoyi",
"state": "LA",
"country": "NG",
"zip_code": "12345"
}
},
"description": "Test",
"currency": "NGN",
"amount": 100000,
"direction": "incoming",
"payment_method": {
"type": "bank_account"
},
"reference": "1b09d9b2-11jd9eheveb-9203v02g",
"metadata": {
"order": {
"identifier": "ORD12345",
"items": [
{
"name": "Deposit",
"type": "digital"
}
]
}
}
}Sample Response
Last updated