Read-only history of lock/unlock events for accounts. To actually lock or
unlock an account, use TreasuryPrime.Account.lock/3 and
TreasuryPrime.Account.unlock/2 (which PATCH the account itself) —
this resource only lets you list/inspect what happened, e.g. for an audit
trail.
Summary
Types
Functions
@spec get(TreasuryPrime.Client.t(), String.t()) :: {:ok, t()} | {:error, TreasuryPrime.Error.t()}
Fetches a single account lock event 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 lock/unlock history.
Filterable params
account_id.
@spec list!(TreasuryPrime.Client.t(), map()) :: TreasuryPrime.Page.t()