#shita-Connect
1 messages ยท Page 1 of 1 (latest)
Hi there, you can connect the accounts through OAuth (https://stripe.com/docs/connect/oauth-standard-accounts)
However, it's not a recommended anymore, you shall create new standard accounts and connect them through API (https://stripe.com/docs/connect/standard-accounts)
i can't use this for testing purpose?
You still can, it's just that using OAuth is way more complicated.
Stripe Dashboard is still using OAuth flow when you create a standard account through Dashboard, I'd suggest you to use API to create the account and account_link to get started with Connect (https://stripe.com/docs/connect/standard-accounts).
using api, i can connect two separate test accounts (with different email)?
Yes you can. Please follow the guide that I sent earlier to create two accounts and connect them.
what i would like to achieve is that, if I successfully connect my platform (email1) to standard account (email2), i'll be able to clone customer with payment method from the platform to the connected account and able to manage/view/perform charge the cloned customer from email2's own dashboard
is this possible?
Yes that's possible
https://stripe.com/docs/payments/payment-methods/connect#cloning-payment-methods this is how you clone a payment method from platform to a connected account
awesome! thanks a lot ๐
followup question, how will i know if i successfully connected two separate test accounts?
other than showing on your platform's connected accounts list
https://stripe.com/docs/api/accounts/list#list_accounts you can also call the list accounts API to see the list of accounts that are connected to your platform.
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
will the email2's account id will show in platforms connected accounts list?
Yes you are right
great! thanks ๐