UNPKG

@bebapps/rapyd-sdk

Version:

An un-official [Rapyd](https://rapyd.net) SDK for Node.js.

23 lines (22 loc) 1.84 kB
export enum VirtualAccountNumberError { /** * The request tried to retrieve a bank account object issued to a wallet, but the ID of the object was not recognized. The request was rejected. Corrective action: Provide the ID of a valid issued bank account object, a string starting with 'issuing_'. */ ERROR_GET_ISSUING = 'ERROR_GET_ISSUING', /** * The request tried to retrieve a bank account transaction for a wallet, but the transaction was not found. The request was rejected. Corrective action: For 'bank_account', use the bank account number that was issued to the wallet. For 'transaction', use the ID of the transaction, which is a UUID. To find the transaction ID, use 'Retrieve Bank Account History for Wallet'. */ ERROR_GET_ISSUING_TRANSACTION = 'ERROR_GET_ISSUING_TRANSACTION', /** * The request tried to issue a bank account number to a wallet, but the currency is not supported for the country provided. The request was rejected. Corrective action: Contact Client Support. */ ERROR_ISSUING_BANK_ACCOUNT_COUNTRY_CURRENCY_MISMATCH = 'ERROR_ISSUING_BANK_ACCOUNT_COUNTRY_CURRENCY_MISMATCH', /** * The request tried to simulate a deposit to a bank account number that was issued to a wallet in the sandbox, but the bank account was not found. The request was rejected. Corrective action: For 'issued_bank_account', use the ID of a bank account number that was issued to a wallet. The ID is a string starting with 'issuing_'. */ ERROR_ISSUING_DEPOSIT = 'ERROR_ISSUING_DEPOSIT', /** * The request tried to issue a bank account number to a wallet, but the wallet ID was missing from the request. The request was rejected. Corrective action: In the 'ewallet' field, provide the ID of a valid wallet, a string starting with 'ewallet_'. */ INVALID_EWALLET_TOKEN = 'INVALID_EWALLET_TOKEN', };