#Beans
1 messages ยท Page 1 of 1 (latest)
We are using Stripe Express Account for our users
They are creating their own products in our website
Right now the products created are in our main account.
How can we do it in a way that when they create their product, it will be connected on their Stripe Express Account
Is that make sense? ๐
What do you mean by products? The Stripe products objects https://stripe.com/docs/api/products?
These products are on your platform account, and you want them on the connected accounts?
When creating products with the API, use the Stripe-Account header to create the products on the connected account https://stripe.com/docs/connect/authentication
Will check this out.
So instead our API KEY
I will use the connect account api key?
No, you always use the API key of the platform account, but on top of it you pass the Stripe-Account header that contains the account ID of the connected account.
Exactly.
The CONNECTED_STRIPE_ACCOUNT_ID is the ids that prefixes "acct_" right?
Yes!
Cool, will try it out. Thank you!
Happy to help ๐