#jvheaney
1 messages · Page 1 of 1 (latest)
What type of Connect accounts are you using?
Standard
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)
So I would just have to add the connected stripe account id (for my merchant) in a header on the checkout sessions create API?
Got it, I'll give that a shot now, thank you!