#jvheaney

1 messages · Page 1 of 1 (latest)

hollow surgeBOT
untold barn
#

What type of Connect accounts are you using?

vapid surge
#

Standard

untold barn
#

Got it. So with that flow you'd want to do direct charges: https://stripe.com/docs/connect/direct-charges. With this, all products, prices, customer objects, etc would be created directly on the connect account. Basically you want to pass the stripe account header for all requests: https://stripe.com/docs/connect/authentication. The error you're getting generally occurs when some requests are being made on the platform when they should be made on the connect account (or vice versa)

With Connect, you can make charges directly on the connected account and take fees in the process.

Learn how to add the right information to your API calls so you can make calls for your connected accounts.

vapid surge
#

So I would just have to add the connected stripe account id (for my merchant) in a header on the checkout sessions create API?

untold barn
#

yep

#

and for all other objects referenced

#

product/price/customer/etc

vapid surge
#

Got it, I'll give that a shot now, thank you!