Module plaid::api::product::info [] [src]

The Info endpoint allows you to retrieve various account holder information on file with the financial institution, including names, emails, phone numbers, and addresses.

Endpoint example

use plaid::api::client::{ Client, Response, Payload };
use plaid::api::product;
use plaid::api::user::{ User };

let client = Client { endpoint:  "https://tartan.plaid.com",
                      client_id: "testclient",
                      secret:    "testsecret",
                      hyper:     &hyper };

let user = User { access_token: "testaccesstoken".to_string() };

let response = client.request(
  product::Info,
  Payload::FetchData(client, user, None)).unwrap();

Structs

Info

The definition of the Info Product.

InfoAddress

Representation of an address entry returned by info.

InfoData

Representation of data that is retrieved from the Info product.

InfoInternalData

Represents the actual info data from an info response.