#lafafm
1 messages · Page 1 of 1 (latest)
evt_1MexVPJbrk1nz30V0bGsGttK
On webhook listener I'm trying to retrieve invoice by id
Thanks for sharing, so that event was delivered successfully and your endpoint is responding with 200.
Can you share the ID (req_xxx) of the failing API request?
https://support.stripe.com/questions/finding-the-id-for-an-api-request
But you should just retry the request in your case I think:
https://stripe.com/docs/rate-limits#:~:text=This object cannot be accessed,or at a lower rate.
req_dHoZIJkV5TF6wq
Yeah, just retry the request when you get that error. You can configure this within Stripe:
const stripe = Stripe('sk_test_...', {
maxNetworkRetries: 2,
});