#nickdnk
1 messages ยท Page 1 of 1 (latest)
HI ๐
Can you share an API request ID for this? It will start with req_
Here's how you can find a request ID: https://support.stripe.com/questions/finding-the-id-for-an-api-request
I don't really know if I'm even looking for a specific request
pi_3OAxiHLj11Ytqxjb2Etxk7ZV is the payment intent
I know there is documentation about the redirect flow somewhere, I just can't find the article
return_url on the payment intent reference does not explain which values are appended to the return url
Sorry for the delay.
It's alright
See evt_3OAxiHLj11Ytqxjb2Iaf9kjg
It has return_url but with only my own parameters (token)
however when I return to my app, it has 3 more
When you say "it has 3 more", what are you referring to here?
And are we talking about what is in the next_action property?
payment_intent, payment_intent_client_secret and redirect_status
Yes
Of the event I just linked
Right, just making sure we get on the same page because it is not clear to me what you are referring to.
Which URL specifically are you talking about in the payment_intent.next_action property?
return_url here
the client gets sent here with payment_intent, payment_intent_client_secret and redirect_status added to the queries
which I'm fairly certain is documented somewhere, I just can't find it
maybe it's stripe.js docs
Okay and what about that is confusing here? Is it something you are trying to configure?
I'm trying to find the documentation for this
I'm currently seeing redirect_status=pending, but I don't know which values I might see
I'm currently seeing redirect_status=pending, but I don't know which values I might see
Sorry that still doesn't make sense to me. Where are you seeing this?
On my end
After the payment succeeds on the stripe test page
It redirects me to the return_url I provided, but it adds payment_intent, payment_intent_client_secret and redirect_status
as you can see from the event, I only provided token as query
Yes I see that. I know we do append additional information on returl_url strings to allow your client to pass them back to the server and get updated on the payment status (or fetch updates using Stripe.js). I'm looking for the doc where we spell this out
I think I'm running into the same lack of clear info
Alright so I'm not crazy
I know for sure I've seen docs for this, otherwise I would not have implemented it, and I'm specifically checking for redirect_status=failed
I guess I could have just tested my way to that result though