Book transfers — move funds between Lithic financial accounts instantly.
{:ok, transfer} = Lithic.BookTransfers.create(%{
amount: 1000,
financial_account_token_sender: "fa_token_a",
financial_account_token_receiver: "fa_token_b",
currency: "USD",
subtype: "TRANSFER"
})
Summary
Functions
@spec create( map(), keyword() ) :: {:ok, map()} | {:error, Lithic.Error.t()}
@spec get( String.t(), keyword() ) :: {:ok, map()} | {:error, Lithic.Error.t()}
@spec list(keyword()) :: {:ok, Lithic.Page.t(map())} | {:error, Lithic.Error.t()}
@spec retry( String.t(), keyword() ) :: {:ok, map()} | {:error, Lithic.Error.t()}
@spec reverse(String.t(), map(), keyword()) :: {:ok, map()} | {:error, Lithic.Error.t()}
@spec stream(keyword()) :: Enumerable.t()