Going.Plaid 4.0.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package Going.Plaid --version 4.0.0
NuGet\Install-Package Going.Plaid -Version 4.0.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Going.Plaid" Version="4.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Going.Plaid --version 4.0.0
#r "nuget: Going.Plaid, 4.0.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Going.Plaid as a Cake Addin
#addin nuget:?package=Going.Plaid&version=4.0.0

// Install Going.Plaid as a Cake Tool
#tool nuget:?package=Going.Plaid&version=4.0.0

Going.Plaid

Build status NuGet

What is Going.Plaid?

Going.Plaid is a .net core 3.1+ library for interacting with Plaid's banking APIs. See their documentation here.

Where can I get it?

Going.Plaid is available at nuget.org.

Package Manager PM > Install-Package Going.Plaid

How it works?

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

var client = new PlaidClient(
	Environment.Sandbox);

// Retrieving a user's recent transactions.
var result = await client.TransactionsGetAsync(
	new()
	{
		Secret = "<secret>",
		ClientId = "<client_id>",
		AccessToken = "<access_token>",
	});
Usage

You may provide secret and clientId to the constructor as follows:

var client = new PlaidClient(
	Environment.Sandbox,
	secret: "<secret>",
	clientId: "<client_id>");

// Retrieving a user's recent transactions.
var result = await client.TransactionsGetAsync(
	new()
	{
		AccessToken = "<access_token>",
	});

This will allow you to save a single PlaidClient in the DI system without tracking secret and clientId separately. PlaidClient is comfortable being used as a single-instance class in this manner.

.NET Core Configuration Options

Easy to use:

Call services.AddPlaid(IConfigurationRoot) or services.AddPlaid(IConfiguration). This will automatically bind options from the provided configuration section or the Plaid section of the root; configure a named HttpClient for Going.Plaid; and configure PlaidClient as a singleton.

IHttpClientFactory

Going.Plaid supports the IHttpClientFactory for correct usage of HttpClient, as described here. If you choose not to call .AddPlaid(), because you need to customize your DI structure, it is recommended that you call services.AddPlaidClient() to properly configure the IHttpClientFactory for Going.Plaid usage.

IOptions Support

Going.Plaid supports configuration from any configuration source via the IOptions pattern. You can provide any configuration section to .AddPlaid() and the options will be automatically bound. Alternatively, you may call services.Configure<PlaidOptions>(); to configure the PlaidOption manually. Once done, you can then add PlaidClient as a singleton by calling services.AddSingleton<PlaidClient>().

Converters Support

There are several converters that Going.Plaid uses to serialize and deserialize data to the Plaid service. These converters are automatically used internally for all api calls to Plaid. However, if you need to do any serialization or deserialization of your own (for example, if you wish to pass Going.Plaid.Link.OnSuccessMetadata directly from the browser to the web server), then you may need to add these converters to the ASP.NET JSON serializer. The easiest way to do this is as follows:

services.Configure<JsonOptions>(o =>
{
	o.SerializerOptions.AddPlaidConverters();
});

This will automatically add the converters to the default options for ASP.NET JSON serializer. Otherwise, you can manually add the types found under Going.Plaid.Converters to the JsonSerializationOptions.Converters list of converters.

API Version

Going.Plaid currently targets Plaid API version 2020-09-14 only.

Product Compatible and additional computed target framework versions.
.NET net5.0 is compatible.  net5.0-windows was computed.  net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp3.1 is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Going.Plaid:

Package Downloads
App.Framework

This package contains the basic framework for any .Net 6 API including standard caching, enums, dictonaries, interfaces, etc.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
6.24.0 25 4/17/2024
6.23.0 180 3/28/2024
6.22.0 232 3/22/2024
6.21.0 128 3/21/2024
6.20.0 439 3/11/2024
6.19.0 1,266 2/22/2024
6.18.0 903 2/15/2024
6.17.1 559 2/5/2024
6.17.0 429 2/2/2024
6.16.0 1,522 1/17/2024
6.15.0 2,942 1/4/2024
6.14.0 516 1/3/2024
6.13.0 3,829 12/21/2023
6.12.0 3,120 11/30/2023
6.11.0 820 11/27/2023
6.10.1 729 11/24/2023
6.10.0 870 11/21/2023
6.9.1 939 11/14/2023
6.9.0 13,113 10/18/2023
6.8.0 27,268 9/19/2023
6.7.0 3,830 8/25/2023
6.6.0 948 8/22/2023
6.5.0 6,881 8/17/2023
6.4.0 1,011 8/11/2023
6.3.0 1,671 7/25/2023
6.2.0 2,498 7/10/2023
6.1.0 1,445 6/22/2023
6.0.0 6,327 5/18/2023
5.2.0 19,766 4/18/2023
5.1.1 1,947 4/5/2023
5.1.0 1,642 3/23/2023
5.0.0 5,475 3/9/2023
4.22.1 2,988 3/2/2023
4.22.0 2,052 2/23/2023
4.21.0 1,878 2/13/2023
4.20.0 20,082 1/18/2023
4.19.0 17,936 12/16/2022
4.18.1 7,462 12/5/2022
4.18.0 7,758 11/19/2022
4.17.0 4,710 11/10/2022
4.16.0 48,247 11/1/2022
4.15.1 10,283 10/3/2022
4.15.0 1,747 9/23/2022
4.13.0 8,051 8/4/2022
4.12.0 11,530 7/20/2022
4.11.1 25,118 7/4/2022
4.11.0 1,354 6/28/2022
4.10.0 2,096 6/14/2022
4.9.0 2,008 6/10/2022
4.8.0 4,622 6/1/2022
4.7.1 2,510 5/15/2022
4.7.0 12,849 4/22/2022
4.6.0 1,343 4/16/2022
4.5.0 7,795 3/31/2022
4.4.0 3,256 3/18/2022
4.3.0 29,099 2/6/2022
4.2.0 2,940 1/29/2022
4.1.0 3,897 1/16/2022
4.0.0 12,876 1/10/2022
3.3.0 18,026 12/1/2021
3.2.1 13,909 11/21/2021
3.2.0 7,027 11/10/2021
3.1.0 618 11/8/2021
3.0.0 13,188 10/27/2021
2.8.0 25,114 8/12/2021
2.7.0 1,762 7/16/2021
2.6.0 3,096 4/28/2021
2.5.0 605 4/13/2021
2.4.1 5,537 3/20/2021
2.4.0 326 3/3/2021
2.3.4 143 3/2/2021
2.3.3 1,008 2/7/2021
2.3.2 549 1/28/2021
2.3.1 177 1/28/2021
2.3.0 154 1/27/2021
2.2.1 159 1/27/2021
2.2.0 270 12/23/2020
2.1.0 265 11/21/2020
2.0.0 313 11/17/2020
1.3.0-preview 182 10/8/2020
1.2.1 122,071 10/8/2020
1.2.0 866 9/15/2020
1.1.2 228 9/14/2020
1.1.1 1,060 8/15/2020
1.1.0 266 8/12/2020
1.0.1-preview.9 251 8/12/2020
1.0.1-preview.3 227 8/11/2020
1.0.1-preview.1 186 8/11/2020
1.0.1-preview 316 8/10/2020
1.0.0 345 8/2/2020