Class used to call the Auth product.

Sections
Methods
G
Public
Instance Public methods
get(access_token, account_ids: nil, options: nil)

Get information about account and routing numbers for checking and savings accounts.

Does a POST /auth/get call which returns high level account information along with account and routing numbers for checking and savings accounts.

access_token

access_token who's item to fetch Auth for.

account_ids

Specific account ids to fetch numbers for (optional).

options

Additional options to merge into API request.

Returns

Returns AuthResponse.

# File lib/plaid/products/auth.rb, line 16
def get(access_token, account_ids: nil, options: nil)
  post_with_auth 'auth/get',
                 AuthResponse,
                 build_payload(access_token,
                               account_ids: account_ids,
                               options: options)
end