Transfer funds to external bank accounts asynchronously.
| Name | Type | Required | Description |
|---|---|---|---|
| amount | integer | Yes | Amount in kobo. |
| account_number | string | Yes | Recipient account number. |
| bank_code | string | Yes | Recipient bank code. |
| reason | string | No | Transfer reason. |
| pin | string | Yes | Your transaction pin. |
curl -X POST "https://api.piggyvest.business/api/v1/transfer/bank-transfer" \\-H "Authorization: Bearer YOUR_SECRET_KEY" \\-H "Content-Type: application/json" \\-d '{ "amount": 50000, "account_number": "0123456789", "bank_code": "058", "reason": "Payment for services", "pin": "1234"}'{ "status": true, "message": "Bank transfer is processing"}{ "status": false, "message": "Invalid bank code"}