Class used to call the Identity product.
Sections
Methods
- G
Public
Instance Public methods
get(access_token)
Link
Get Identity information.
Does a POST /identity/get call to retrieve all info for a given access_token's item.
- access_token
-
access_token who's item to fetch Identity data for.
Returns
Returns the IdentityResponse object with Identity info.
Source: show
# File lib/plaid/products/identity.rb, line 12 def get(access_token) post_with_auth 'identity/get', IdentityResponse, access_token: access_token end