Plaid.LinkToken.get
You're seeing just the function
get
, go back to Plaid.LinkToken module for more information.
Specs
get(String.t(), Plaid.config()) :: {:ok, Plaid.LinkToken.GetResponse.t()} | {:error, Plaid.Error.t()}
Get information about a previously created link token.
Does a POST /link/token/get
call which returns details about a link token which
was previously created.
Params:
link_token
- A link_token from a previous invocation of /link/token/create.
Examples
LinkToken.get("link-prod-123xxx", client_id: "123", secret: "abc")
{:ok, %Plaid.LinkToken.GetResponse{}}