List Virtual Accounts by Rapyd Wallet
List the virtual accounts that are attached to a Rapyd Wallet.
Note
This endpoint replaces the deprecated endpoint - GET /v1/issuing/bankaccounts/list
Rapyd no longer supports the deprecated endpoint.
ewallet
ID of the Rapyd Wallet that the virtual accounts were issued to. String starting with ewallet_.
/v1/ewallets/:ewallet/virtual_accounts
List Virtual Accounts by Rapyd Wallet
curl -X get 'https://sandboxapi.rapyd.net/v1/ewallets/ewallet_c1943cfeda5f98247ab117e5d2648861/virtual_accounts' \ -H 'access_key: your-access-key-here' \ -H 'Content-Type: application/json' \ -H 'salt: your-random-string-here' \ -H 'signature: your-calculated-signature-here' \ -H 'timestamp: your-unix-timestamp-here'
{ "status": { "error_code": "", "status": "SUCCESS", "message": "", "response_code": "", "operation_id": "5c82ecb5-6fc7-4204-ada3-17685f89a463" }, "data": { "ewallet": "ewallet_c1943cfeda5f98247ab117e5d2648861", "bank_accounts": [ { "account_id": "GB8350601322287957055292", "account_id_type": "iban", "currency": "GBP", "country_iso": "GB", "issuing_id": "issuing_928dd64ce5070cb0257fac58e8651e9a", "status": "ACT", "requested_currency": null }, { "account_id": "DE07202208000092780641", "account_id_type": "iban", "currency": "EUR", "country_iso": "DE", "issuing_id": "issuing_d11d404c919519c66ac61e14389f766a", "status": "ACT", "requested_currency": null } ] } }