Going.Plaid 6.22.0

dotnet add package Going.Plaid --version 6.22.0
NuGet\Install-Package Going.Plaid -Version 6.22.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="6.22.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Going.Plaid --version 6.22.0
#r "nuget: Going.Plaid, 6.22.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=6.22.0

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

Going.Plaid

Build status NuGet

What is Going.Plaid?

Going.Plaid is a library for interacting with Plaid's banking APIs. See their documentation here. It is supported for .net standard 2.0, .net core 3.1, and .net 5.0+.

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.

Example

Please visit this repo and download to review a working example of how to use this library and the Plaid API.

.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 was computed.  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 is compatible.  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 is compatible.  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 netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 is compatible. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
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.22.0 129 3/22/2024
6.21.0 110 3/21/2024
6.20.0 365 3/11/2024
6.19.0 963 2/22/2024
6.18.0 827 2/15/2024
6.17.1 510 2/5/2024
6.17.0 398 2/2/2024
6.16.0 1,374 1/17/2024
6.15.0 2,628 1/4/2024
6.14.0 501 1/3/2024
6.13.0 3,527 12/21/2023
6.12.0 3,015 11/30/2023
6.11.0 794 11/27/2023
6.10.1 701 11/24/2023
6.10.0 845 11/21/2023
6.9.1 910 11/14/2023
6.9.0 12,063 10/18/2023
6.8.0 26,680 9/19/2023
6.7.0 3,671 8/25/2023
6.6.0 926 8/22/2023
6.5.0 6,868 8/17/2023
6.4.0 979 8/11/2023
6.3.0 1,636 7/25/2023
6.2.0 2,426 7/10/2023
6.1.0 1,409 6/22/2023
6.0.0 6,246 5/18/2023
5.2.0 19,695 4/18/2023
5.1.1 1,924 4/5/2023
5.1.0 1,620 3/23/2023
5.0.0 5,342 3/9/2023
4.22.1 2,971 3/2/2023
4.22.0 1,989 2/23/2023
4.21.0 1,797 2/13/2023
4.20.0 20,043 1/18/2023
4.19.0 17,894 12/16/2022
4.18.1 7,250 12/5/2022
4.18.0 7,567 11/19/2022
4.17.0 4,672 11/10/2022
4.16.0 47,393 11/1/2022
4.15.1 10,119 10/3/2022
4.15.0 1,715 9/23/2022
4.13.0 7,912 8/4/2022
4.12.0 11,441 7/20/2022
4.11.1 25,056 7/4/2022
4.11.0 1,339 6/28/2022
4.10.0 2,088 6/14/2022
4.9.0 1,971 6/10/2022
4.8.0 4,586 6/1/2022
4.7.1 2,489 5/15/2022
4.7.0 12,828 4/22/2022
4.6.0 1,320 4/16/2022
4.5.0 7,777 3/31/2022
4.4.0 3,248 3/18/2022
4.3.0 28,776 2/6/2022
4.2.0 2,930 1/29/2022
4.1.0 3,888 1/16/2022
4.0.0 12,845 1/10/2022
3.3.0 18,003 12/1/2021
3.2.1 13,863 11/21/2021
3.2.0 7,008 11/10/2021
3.1.0 617 11/8/2021
3.0.0 13,182 10/27/2021
2.8.0 25,101 8/12/2021
2.7.0 1,760 7/16/2021
2.6.0 3,096 4/28/2021
2.5.0 605 4/13/2021
2.4.1 5,494 3/20/2021
2.4.0 325 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 312 11/17/2020
1.3.0-preview 182 10/8/2020
1.2.1 119,711 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