Skip to content

Latest commit

 

History

History
29 lines (23 loc) · 939 Bytes

README.md

File metadata and controls

29 lines (23 loc) · 939 Bytes

Plaid.NET

NuGet

What is Plaid.NET?

Plaid.NET is a .netstandard library for interacting with Plaid's banking APIs. See their documentation here.

Where can I get it?

Plaid.NET is available at nuget.org.

Package Manager PM > Install-Package Acklann.Plaid.NET

How it works?

You can make all calls to Plaid's API via the Acklann.Plaid.PlaidClient class.

var client = new PlaidClient();
// Retrieving a user's recent transactions.
var result = await client.FetchTransactionsAsync(new GetTransactionsRequest()
{
    Secret = "your_secret",
    ClientId = "your_client_id",
    AccessToken = "your_token",
    ...
});

API Version

Plaid.NET currently targets Plaid API version 2019-05-29.