Plaid.Processor.get_identity
You're seeing just the function
get_identity
, go back to Plaid.Processor module for more information.
Specs
get_identity(String.t(), Plaid.config()) :: {:ok, Plaid.Processor.GetIdentityResponse.t()} | {:error, Plaid.Error.t()}
Get account holder information on file with the financial institution.
Does a POST /processor/identity/get
call which allows you to retrieve various
account holder information on file with the financial institution,
including names, emails, phone numbers, and addresses.
Params:
processor_token
- The processor token obtained from the Plaid integration partner.
Examples
Processor.get_identity("processor-prod-123xxx", client_id: "123", secret: "abc")
{:ok, %Processor.GetIdentityResponse{}}