#peter_00995
1 messages · Page 1 of 1 (latest)
Hey there, you're trying to retrieve Products from one of your connected accounts?
I would like to yes
This should be doable using the stripe-account header with the Product API (Retrieve or List)
ok so using stripeAccount: '{{CONNECTED_ACCOUNT_ID}}', on the product GET endpoint
Thanks
Yep!
follow up question
👂
Can a Stripe payment link contain products from a connected account?
Only if you create the payment link on the connected account the same way, using the stripe account header
on your platform account, no, those need to be products on your platform account
ok so if I had multiple connected accounts and wanted to create. a payment link with products from multiple connected accounts, I would have to create a custom app to sync these products with my own account?
I am corrct in thinking a payment link can contain multiple products aren't I?
You can have multiple products included in the items for a payment link, yes, but they all must belong to the account on which the payment link is created
ok - so I assume a custom Stripe app would be the way to do that
read in and create products in platform account from connected accounts
Not sure what you mean by custom app, but if you want to include products sources from 1 or more connected account on a platform payment link, yea you'd need to "import" those to the platform, you could list from the connected account and re-create them using the API on your own account.
This sounds like you might use a separate charge & transfer flow ( https://stripe.com/docs/connect/charges-transfers ) to sell a single "cart" related to multiple connected account, then transfer an appropriate amount to each of them.
ye perfect thanks