From 3875248d107017d37c39c872b39a9fa7616ae5a9 Mon Sep 17 00:00:00 2001 From: Mauri de Souza Meneguzzo Date: Tue, 6 Jul 2021 14:03:39 -0300 Subject: [PATCH] feat: add plaid instant account verification endpoint --- lib/endpoints/bank.js | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/lib/endpoints/bank.js b/lib/endpoints/bank.js index 5171554..bcda291 100644 --- a/lib/endpoints/bank.js +++ b/lib/endpoints/bank.js @@ -35,6 +35,14 @@ Bank.prototype = { }, callback, idempotencyKey); }, + instantAccountVerificationPlaid: function(params, callback, idempotencyKey) { + return this.resource.request({ + method: 'POST', + uri: '/bank/iav/plaid', + body: params + }, callback, idempotencyKey); + }, + addBankAccount: function(params, callback, idempotencyKey) { return this.resource.request({ method: 'POST',