braintree / braintree-web

A suite of tools for integrating Braintree in the browser
https://developer.paypal.com/braintree/docs/start/hello-client/javascript/v3
MIT License
444 stars 134 forks source link

Documentation/Guide for integrating Plaid? #537

Closed acomito closed 4 years ago

acomito commented 4 years ago

I see Plaid mentioned in a few places throughout the docs, such as here:

https://developers.braintreepayments.com/guides/ach/overview#tokenizing

But I don't see any guide for exactly how it's integrated. Is there one?

crookedneighbor commented 4 years ago

I think you're looking for this: https://articles.braintreepayments.com/guides/payment-methods/ach#tokenized-check

tl;dnr, sign up for your own plaid account and add the api keys in your Braintree control panel.

The tokenize call is done using bankLogin instead of bankDetails and it calls the Plaid sdk under the hood. See https://developers.braintreepayments.com/guides/ach/client-side/javascript/v3#using-tokenized-check

acomito commented 4 years ago

Alright gotcha. I wasn't clear if we use plaid then pass in their public/access token or if we use plaid via braintree. Sounds like it's the latter.

Thanks @crookedneighbor

Edit: How doe that know to use plaid? Is there an option flag?