Reputation: 1
I'm integrating plaid in node with stripe integration.I have created stripe token and with token created stripe customers successfully using plaid.
Upvotes: 0
Views: 233
Reputation: 941
When you say transaction, I’m assuming you’re referring to the Stripe charge and a Stripe webhook endpoint, but if this isn’t what you meant, let me know. Since you have confirmed that your webhook is working and is receiving events, I believe the problem is that there just hasn’t been enough time for the charge.succeeded
or charge.failed
events to have been triggered. Those events come up to 5 days after you get the charge.pending
event: https://stripe.com/docs/ach#ach-specific-webhook-notifications.
Upvotes: 1