#Kolombina-connect
1 messages · Page 1 of 1 (latest)
hi, reading..
so yeah, you create a Customer object on your platform account. Then you create the CheckoutSession on the connected account by using stripe_account , that means that in that API call, anything you refer to(Customers/Price objects/anything else) has to also exist on the connected account. So referring to a Customer cus_xxxxx object created on the platform will fail.
Depending on what your goal is one option is to create the Customer on the connected account instead. ( stripe.Customer.create( .... , stripe_account="acct_xxx")) https://stripe.com/docs/connect/authentication
ok, thanks!