#Rust-platform-customers
1 messages · Page 1 of 1 (latest)
Hey, they cannot no. You'd generally have a global Customer object on the platform account that you clone to your connected accounts: https://stripe.com/docs/connect/cloning-customers-across-accounts
I am using checkout session to create payment links for customers of our connected accounts so I need to store the customer_id in my database so can pass it as parameter in session.create
Am i missing something ?
Hi 👋 jumping in as my teammate needed to step away. That sounds right.
but @quiet wadi said connected accounts cannot share the same customer ?
Correct, they can't.
Sorry, I don't think I understand your question.
Customer objects (as with all objects in the Stripe ecosystem) reside on and belong to a specific account. Accounts cannot access or leverage objects that exist on another account. Platform's can reference objects from a connected account, but only when they're making requests as though they are the connected account (using the Stripe-Account header/parameter).