Plaid.Processor.get_auth
You're seeing just the function
get_auth
, go back to Plaid.Processor module for more information.
Specs
get_auth(String.t(), Plaid.config()) :: {:ok, Plaid.Processor.GetAuthResponse.t()} | {:error, Plaid.Error.t()}
Get the bank account info given a processor_token.
Does a POST /processor/auth/get
call which returns the bank account and bank
identification number (such as the routing number, for US accounts), for a checking or
savings account that's associated with a given processor_token.
Params:
processor_token
- The processor token obtained from the Plaid integration partner.
Examples
Processor.get_auth("processor-prod-123xxx", client_id: "123", secret: "abc")
{:ok, %Processor.GetAuthResponse{}}