Skip to content
This repository has been archived by the owner on Jul 24, 2020. It is now read-only.

Latest commit

 

History

History
26 lines (21 loc) · 619 Bytes

README.md

File metadata and controls

26 lines (21 loc) · 619 Bytes

go-plaid

Go client for Plaid. This is not a comprehensive client. It includes the following endpoints

Endpoints

  • POST /auth/get
  • POST /item/public_token/exchange
  • POST /item/public_token/create

Usage

Instantiate client

client := plaid.NewClient("some_id","some_secret",plaid.Sandbox)

Call methods

resp, err := client.AuthGet("access token value here")

Legacy Client

Included also is a legacy client, instantiated in the same way. It will automatically use the correct urls.

Instantiate client

client := plaid.NewLegacyClient("some_id","some_secret",plaid.Sandbox)