Reserves an account number / routing number pair ahead of an account
being fully opened — useful when you need to give a customer their
future account number immediately (e.g. to print on a welcome packet or
set up payroll direct deposit) before the underlying
TreasuryPrime.AccountApplication has finished processing.
Summary
Functions
Reserves a new account number.
Fetches a single reservation by id.
Lists account number reservations.
Types
Functions
@spec create(TreasuryPrime.Client.t(), map(), keyword()) :: {:ok, t()} | {:error, TreasuryPrime.Error.t()}
Reserves a new account number.
@spec create!(TreasuryPrime.Client.t(), map(), keyword()) :: t()
@spec get(TreasuryPrime.Client.t(), String.t()) :: {:ok, t()} | {:error, TreasuryPrime.Error.t()}
Fetches a single reservation by id.
@spec get!(TreasuryPrime.Client.t(), String.t()) :: t()
@spec list(TreasuryPrime.Client.t(), map()) :: {:ok, TreasuryPrime.Page.t()} | {:error, TreasuryPrime.Error.t()}
Lists account number reservations.
@spec list!(TreasuryPrime.Client.t(), map()) :: TreasuryPrime.Page.t()