plaid-node
plaid-node copied to clipboard
Node bindings for Plaid
basePath is typed as string or null. Preferably should enforce a valid PlaidEnvironment. const configuration = new Configuration({ basePath: PlaidEnvironments.sandbox, baseOptions: { headers: { 'PLAID-CLIENT-ID': process.env.PLAID_CLIENT_ID, 'PLAID-SECRET': process.env.PLAID_SECRET, }, },...
Could this library provide a method to verify the webhooks that come from Plaid? There is an [example implementation](https://plaid.com/docs/api/webhook-verification/) in the docs, but it's almost 100 lines of code. Given...
Hello, I have some accounts_type loan and other not getting transactions when I call the "transactions/get" API, according to the documentation I want to test with "investments/transactions/get", but I get...
Bumps [follow-redirects](https://github.com/follow-redirects/follow-redirects) from 1.14.4 to 1.15.2. Commits 9655237 Release version 1.15.2 of the npm package. 6e2b86d Default to localhost if no host given. 449e895 Throw invalid URL error on relative...
The type definition for `RemovedTransaction` is ```typescript /** * A representation of a removed transaction * @export * @interface RemovedTransaction */ export interface RemovedTransaction { /** * The ID of...
Bumps [follow-redirects](https://github.com/follow-redirects/follow-redirects) from 1.15.3 to 1.15.5. Commits b1677ce Release version 1.15.5 of the npm package. d8914f7 Preserve fragment in responseUrl. 6585820 Release version 1.15.4 of the npm package. 7a6567e Disallow...
We have an api endpoint that receives transaction webhooks. Specifically, we are checking if the webhook code is `INITIAL_UPDATE` or `HISTORICAL_UPDATE` (https://plaid.com/docs/api/products/transactions/#initial_update). This integration was working for about a year....