Virtual Accounts allows businesses to accept payments easily via bank transfer without the usual hassle of manual reconciliation of such payments. Since the majority of payments in the Southeast Asian regions are made through bank transfers, this is an extremely important payment method for your platforms.
Benefits of using Xfers VA
- Save time and effort of having to manually reconcile bank transfer payments
- No need to open bank accounts across various banks.
- You will be notified of the payment response almost instantaneously when your customer has made the payment.
Payment Limits
Maximum Amount (SGD)) |
---|
20,000 |
Payment Availability
Virtual Accounts are usually available throughout the day.
Payment responses are typically fast. However, if the customer has made a payment using a bank account from a different bank to the Virtual Account, there may be a delay of up to a few working hours.
Payment Notifications
When using virtual accounts as a payment method, please note that this will require further customer action to complete the payment. Customers will be required to make the funds transfer through their bank’s online service, or an ATM.
- Delayed (Asynchronous): Bank transfer payments have delayed notification and cannot guarantee payment during the delay. The status of the Payment object will be
pending
until the payment is either successful or failed. It’s common for businesses to hold an order in a “pending” state during this time, not fulfilling the order until the payment is successful.
For payment methods that require customer action, we recommend setting up callbacks so that you can be notified whether a payment has succeeded or not.
Refunds
Please note that refunds are not available for bank transfer payment methods at this moment.
Closing a VA
It is currently not possible to close a VA.
Creating a Payment with Virtual Account Payment Method
# POST api/v4/payment_methods/virtual_bank_accounts
--header 'content-type: application/vnd.api+json' \
-u test_api_key:secret_key \
-d '
{
"data": {
"attributes": {
"referenceId": "customer_id_123456",
"bankShortCode": "CIMB"
}
}
}
'
Updated about a month ago