#guz
1 messages · Page 1 of 1 (latest)
It means the session has expired, when happens after a predetermined period of time: https://stripe.com/docs/api/checkout/sessions/object#checkout_session_object-expires_at
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
So yes, they haven't paid
The costumer may have clicked cancel url?
Also when the user clicks the cancel url and after creates another checkout session, do these checkout session have different id?
cancel_urlwon't fire that event no. Yes, the new session will have a different, uniquecs_xxxID
Is there any way I can know if the user clicks cancel url?
I guess you could add some tracking event in your cancel_url, like here: https://stripe.com/docs/payments/checkout/analyze-conversion-funnel#setup
thank you very much