Plaid.Liabilities.get
You're seeing just the function
get
, go back to Plaid.Liabilities module for more information.
Specs
get(String.t(), options, Plaid.config()) :: {:ok, Plaid.Liabilities.GetResponse.t()} | {:error, Plaid.Error.t()} when options: %{optional(:account_ids) => [String.t()]}
Get liabilities information.
Does a POST /liabilities/get
call which fetches liabilities associated
with an access_token's item.
Params:
access_token
- Token to fetch liabilities for.
Options:
:account_ids
- Specific account ids to fetch liabilities for.
Examples
Liabilities.get("access-sandbox-123xxx", client_id: "123", secret: "abc")
{:ok, %Liabilities.GetResponse{}}