When stripe.confirmPayment redirects back to the return_url on payment completion, it adds 3 GET query parameters to the URL:
- payment_intent=xxx (the id)
- payment_intent_client_secret=yyy
- redirect_status=succeeded
'redirect_status' doesn't appear to be documented anywhere. I suppose it's pretty obvious that that the status is 'succeeded', since the GET has arrived. Can I just ignore this parameter, or are there any other status codes that we should know about?