#monlopy_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/1390207404032917525
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
Hi there, can you share with me the relevant event ID?
It's likely due to the Stripe API version that your webhook endpoint uses. If it renders webhook event with an API version > 2022-11-15, the charges property on PaymentIntents are removed https://docs.stripe.com/upgrades#2022-11-15
Oh, I use the version of 2023 on the prod account. Can I roll back the version? Or some ways to bypass it?
You can use API to create a webhook endpoint, so that you can specify an older API Stripe version that you want the received webhook events to be rendered to https://docs.stripe.com/api/webhook_endpoints/create?#create_webhook_endpoint-api_version
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.