Virtual account number management.
Create multiple routing+account number pairs per bank account. Each unique account number can be issued to a different customer while routing to a single underlying bank account (FBO/sweep pattern).
Example
{:ok, acct_num} = Column.AccountNumbers.create("bacc_123", %{
description: "Customer A virtual account"
})
Summary
Functions
Create an account number for a bank account.
Get an account number.
List all account numbers for a bank account.
Update an account number.
Types
Functions
@spec create(bank_account_id(), params(), opts()) :: result()
Create an account number for a bank account.
@spec get(bank_account_id(), id(), opts()) :: result()
Get an account number.
@spec list(bank_account_id(), opts()) :: result()
List all account numbers for a bank account.
@spec update(bank_account_id(), id(), params(), opts()) :: result()
Update an account number.