#jitendra_webhooks
1 messages ¡ Page 1 of 1 (latest)
đ Welcome to your new thread!
â˛ď¸ We'll be here soon! Typically we respond in a few minutes, but sometimes we might take a bit longer if the server is busy or if you have a particularly tricky question.
âąď¸ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can always start a new thread if you have another question.
đ This thread will always be available, even after it's closed. You can find it again using Discord's search, or you can save this link: https://discord.com/channels/841573134531821608/1233296110336868404
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
hello! what do you mean by subscription created successfully but getting error , can you elaborate more?
i mean subscription activated on stripe but webhook called only once. and showing me that retry after an hour
when i purchase subscription api hit on my end at that time subscription created instanlty on stripe but in my backend it takes time due to some internal process. in meantime webhook missed.
https://docs.stripe.com/webhooks#acknowledge-events-immediately - you should return a 200 http response immediately before doing any complex processing, otherwise the webhook will timeout
you can't control when the event will automatically retry - https://docs.stripe.com/webhooks#retries.
okay, can you please tell me that is it possible to retry the failed webhook automatically after 2 seconds?
no, it's not possible to control the exact timing when the event will automatically retry
is there any other way
you can manually resend the event via the Dashboard
i'm using events for webhook invoices.paid, invoices.payment_success, invoices.failed.
are these events fine for subscriptions payment capture?