All Projects → Ackara → Plaid.net

Ackara / Plaid.net

Licence: mit
A .NET standard library for interacting with Plaid's banking APIs.

Projects that are alternatives of or similar to Plaid.net

System.linq.dynamic.core
The .NET Standard / .NET Core version from the System Linq Dynamic functionality.
Stars: ✭ 864 (+2780%)
Mutual labels:  netstandard
Rest Client
Stars: ✭ 20 (-33.33%)
Mutual labels:  rest-api
Fast bitrix24
Высокопроизводительный API wrapper для Питона для быстрого массового обмена данными с Битрикс24 через REST API
Stars: ✭ 28 (-6.67%)
Mutual labels:  rest-api
Rest Api Examples
Test and Prototype with Fake Online REST/OAuth 2 APIs Examples
Stars: ✭ 13 (-56.67%)
Mutual labels:  rest-api
Apps Android Wikiedudashboard
Access WikiEdu Dashboard from Android App.
Stars: ✭ 20 (-33.33%)
Mutual labels:  rest-api
Play Zhewbacca
Play! framework library to protect REST endpoint by OAuth2 token verification. Supports Play versions 2.5, 2.6, 2.7
Stars: ✭ 21 (-30%)
Mutual labels:  rest-api
Csla
A home for your business logic in any .NET application.
Stars: ✭ 865 (+2783.33%)
Mutual labels:  netstandard
Compreface
Free and open-source face recognition system from Exadel
Stars: ✭ 947 (+3056.67%)
Mutual labels:  rest-api
E Commerce 2 django
Guest register, user register, user login, user logout, account home page, product view history, change password, reset password, change name, send activation email when register, resend activation email, add shipping address, add billing address, add nickname to the addresses, edit shipping address, edit billing address, view list of your addresses, reuse shipping addresses when order products, reuse billing addresses when ordeer products, show sales analytics if staff or admin only using -chart.js-, get analytics data with Ajax, receive marketing email, change if user will receive marketing email or not by admin, send contact message with Ajax, products list, product detail, download product detail as a PDF file, download digital product files -if the user purchased that digital product only-, orders list, list of digital products files, order detail, download order detail as a PDF file, verify order ownership with Ajax -to secure order detail page-, show cart products, add or remove product from cart, checkout page, thanks page when order placed successfully, add or reuse payment method, add or reuse payment method with Ajax, search products by title, search products by description, search products by price, search products by tag title, write tags for products -by admin only-, auto fill contact email, full name if user logged in.
Stars: ✭ 20 (-33.33%)
Mutual labels:  rest-api
Liberator
An Elixir library for building RESTful applications.
Stars: ✭ 28 (-6.67%)
Mutual labels:  rest-api
Swagger Editor
Swagger Editor
Stars: ✭ 7,365 (+24450%)
Mutual labels:  rest-api
Azuremobileclient.helpers
Provides a wrapper for the Microsoft.Azure.Mobile.Client library
Stars: ✭ 15 (-50%)
Mutual labels:  netstandard
Hoppscotch
👽 Open source API development ecosystem https://hoppscotch.io
Stars: ✭ 34,569 (+115130%)
Mutual labels:  rest-api
Sentence Aligner Rust
rest service + frontend to align sentences , in rust
Stars: ✭ 13 (-56.67%)
Mutual labels:  rest-api
Djangorestframework Book
Django REST framework 3 中文文档, API参考, 最佳实践指南
Stars: ✭ 28 (-6.67%)
Mutual labels:  rest-api
Binding Of Isaac Api
A RESTful API for the Binding of Isaac game series
Stars: ✭ 11 (-63.33%)
Mutual labels:  rest-api
Boilerplate Nodejs Swagger
A Node.js RESTful API application boilerplate with TypeScript, Docker, Koa, Swagger, Jest, and CircleCI
Stars: ✭ 21 (-30%)
Mutual labels:  rest-api
Confluence Python Lib
A python library wrapping the Confluence REST API
Stars: ✭ 30 (+0%)
Mutual labels:  rest-api
Powershell Command Executor
node.js module that provides a registry and gateway for execution powershell commands through long-lived established remote PSSessions
Stars: ✭ 29 (-3.33%)
Mutual labels:  rest-api
Elasticsearch Java Rest
Elasticsearch Java Rest 手册
Stars: ✭ 27 (-10%)
Mutual labels:  rest-api

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",
    ...
});

Testing

For contributors who want to run the unit tests; there is secrets.json file that is intentionally excluded from the project. The file stores your Plaid sandbox keys. The Helper.cs utilize this file. Also there is a project called Plaid.Demo; run the project to generate a access token.

"plaid":
  {
    "secret": null,
    "client_id": null,
    "public_key": null,
    "access_token": null
  }

API Version

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

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].