#daartanian_api
1 messages ยท Page 1 of 1 (latest)
Below are links to other discussions we've had with you in the past week in case you want to review that information. If your question is related to one of these previous discussions, please provide a comprehensive summary of the current state and what you need help with now. We help many users simultaneously, so a summary allows us to resolve your issue as soon as possible.
- daartanian_api, 4 hours ago, 21 messages
- daartanian_connect-flows, 4 days ago, 22 messages
๐ Welcome to your new thread!
โฒ๏ธ We'll be here soon! We typically respond in a few minutes, but in some cases we might need a bit more time (e.g., server's busy, you've got a complex question, etc.).
โฑ๏ธ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can 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/1255031259323695105
๐ Have more to share? Add details, code, screenshots, videos, etc. below.
As you can see in my request, the parameter is being passed:
but no latest_charge:
although... it is on the creation request:
but I need it on the subsequent one that re-checks the paymentIntent (which I am doing through the stripe JS)
I don't see you added expand in this request req_S8ailm8bAJf6eO
yea, sorry I was just pulling an example of what I was attempting to do
I can't actually see any of my most recent requests
despite hard resetting the page ๐คท๐ปโโ๏ธ
Do you have the ID of a recent request?
Nah, as I just said, they aren't showing up in my logs
Are you using the API key from a different Stripe account?
I actually am not sure if I am. Let me check.
Ok, you were right. I had a mixture of API keys from my account and then ones from the docs
Here is one I just put through: req_KEGJmCuuorA12m
But actually, I think this is the one that is giving me trouble: req_zyZMDRhFOCFouD
in your docs, you have the example of pulling in stripeJS and using a method called stripe.retrievePaymentIntent as I showed in the screenshots above
but in that request, there is no expandable parameter, so no data on the response
You can only use expand in a backend request, not frontend.
so there is no way with stripeJS to use Expandable Objects?
No
If that is the case, I would highly suggest your adjust your guide: https://docs.stripe.com/connect/separate-charges-and-transfers?platform=web&ui=elements&client=react
As it walks you through both confirming and then checking on your payment intent with stripe JS (frontend) and pulling out the charge_id to pass to the transfer. Which you are telling me is impossible with this method.