Get Dynamic Account Providers
Retrieve the list of providers available for dynamic virtual account generation.
Endpoint
GET https://api.cashonrails.com/api/v1/banktransfer/list
Headers
| Header | Type | Description |
|---|---|---|
| Authorization | string | Bearer token with your secret key |
Sample Request
curl --location 'https://api.cashonrails.com/api/v1/banktransfer/list' \
--header 'Authorization: Bearer YOUR_SECRET_KEY'Sample Response
{
"status": true,
"message": "Fetched successfully",
"data": [
{
"name": "VFD MFB",
"code": "vfd"
},
{
"name": "SAFE HAVEN MFB",
"code": "safehaven"
},
{
"name": "NET MFB",
"code": "netbank"
}
]
}Last updated on