#theahmadzai-connect-high-level
1 messages · Page 1 of 1 (latest)
So your clients would have Stripe accounts already?
theahmadzai-connect-high-level
Yes, they have established client accounts where they already have their products
I want to build single app where they can onboard and each of them will have their own page where people will see their products
we did something similar with squarespace
each time a square store authorizes with us we store their access_token and refresh_token along with other necessary fields.
Then we have access to their account we list their store items and people can buy from there.
So you'd want to look into OAuth for Standard Connect accounts to get your platform connected to their account: https://stripe.com/docs/connect/oauth-standard-accounts
From there, you could make API calls on their behalf (like listing all Products and Prices) using one of the methods outlined here: https://stripe.com/docs/connect/authentication
Hmm, So if they already have store they'll just connect with us and the application_fee works normally, right
I have been using stripe API, but not much familier with onboarding process. 🙂
Yup! You could do everything with their account that you could do with other Connect account types including creating charges with Payment Intents and Application Fees
Thank you so much!