#rlineweaver
1 messages · Page 1 of 1 (latest)
Not that I'm aware of. This is a limitation of our testing numbers unfortunately. That being said, if you're setting up webhooks, the flow should be pretty much identical despite the fact that there is a large gap of time
yeah, thanks @latent lotus . I am getting the webhooks in the expected state & order, but my problem is that some of my webhook processing code makes Stripe API requests to check on the status of payments, and the test ACH payments are (usually) settled by the time my code gets there 😬
so maybe "Stripe API requests in a webhook handler" is a pattern i should try to avoid... 🤔
anyway, thanks again!
so maybe "Stripe API requests in a webhook handler" is a pattern i should try to avoid... 🤔
There are a lot of legitmate use-cases for making API calls from a handler, so I would amend this to say "be very intentional about which API calls are made and why when putting them in a webhook handler"
Happy to clarify specifics if you have any