Handle Stripe webhook events (payment confirmations).
This is async because we need await request.body() for raw bytes. Stripe requires the raw payload for signature verification.
await request.body()
cURL
curl --request POST \ --url https://api.example.com/v1/webhooks/stripe
Successful Response