#Chewy
1 messages · Page 1 of 1 (latest)
Hi 👋
Are you referring to accessing the Stripe Dashboard or what kind of permissions are inovlved here?
This would be for a customer on our platform to manage their billing with us.
Suppose the broader question is, can we tie a Stripe subscription to an organization / company, or does it have to be to a specific user?
If it's a user, how do we handle that transfer to a new "owner" within our platform
Subscriptions in Stripe need to be tied to Customer objects.
But what that Customer object in Stripe represents in your business model is up to you
Can the data within Customer Objects be changed once created?
Meaning we could keep the Stripe subscription, and update the fields when an owner change occurs on our platform?
Sure. You can review the fields that are available for updating here: https://stripe.com/docs/api/customers/update
You could update the name but it might be easier for your system if you stored some sort of user_id in the metadata property
That way you could match on unique IDs that exist in your system