Retrieves the supported virtual instrument types for the specific account.
Id of balance account. (required)
A Promise that resolves to the virtual instrument types list
Retrieves the virtual instrument requests of a customer. The virtual instruments can be obtained using the accounts API.
offset, limit, accountId and instrumentType
A Promise that resolves to the retrieved virtual payment instruments
// Example usage:
virtualPaymentInstrumentService.getVirtualInstrumentRequests({ accountId: accountId,
instrumentType: VirtualInstrumentType.US_BANK_ACCOUNT })
.then((response) => {
console.log(response);
})
.catch((error) => {
console.error('Error retrieving specified virtual payment instrument requests.');
})
Retrieves the virtual instrument request status.
Virtual instrument request id. (required)
A Promise that resolves to the retrieved virtual payment instrument request status
Request assignment of a new virtual instrument to existing balance account.
Virtual instrument request body.
A promise that resolves to the virtual instrument request status.
StaticgetFunctionRetrieves the singleton instance of the VirtualPaymentInstrumentService class.
The singleton instance of the VirtualPaymentInstrumentService class.
Service class for managing virtual payment instrument-related operations.