#rome5412
1 messages · Page 1 of 1 (latest)
Hi
I want to create a link from our order page to the Stripe payment
I see that the structure of the link is like that https://dashboard.stripe.com/acct_1JCSlX2XDoWoFmjw/payments/py_1OZ87Y2XDoWoFmjwekd8NiYa
How can i create it
I want to create a link from our order page to the Stripe payment
Let's start from the begining sorry, I'm not understanding you
You are using Stripe Connect
The charge you've created is created based on a transfer you made to your connect account
It was via this request req_fOeR3UNyFWpPgE
What Payment link exactly you want to create then ?
i want to create a link for the shop user (the connected account) to specific payment in his dashboard
There is no Stripe product for accepting transfers from a connect account
But I still don't understand what payment you want to accet exactly from the connect account? while you've shared with me a transfer from a platform account to a connect account
Can you share with me a concrete use case/sample of the flow funds please ?
You got me wrong
We are creating a transfer for each purchase to the shop
The shop want to understand in their stripe accout the payment details for this i want to create a link between our ui for each order to Stripe dashboard of the connected account
For example
Ah you want to build the Stripe dashboard url ?
to the transfer ?
When you create a transfer (req_fOeR3UNyFWpPgE) you have in the response the destination_payment:
https://stripe.com/docs/api/transfers/object#transfer_object-destination_payment
Which is the py_12 you are referrring to
and so you build the url like this:
dashboard.stripe.com/payments/{{transfer.destination_payment}}
Thanks a lot