Shared subscriptions
Last updated
Was this helpful?
Last updated
Was this helpful?
Shared subscription are supported using metadata on Stripe products and customers
For your app to support shared subscriptions you will have to implement the customer and subscriptions webhooks. Configure them here.
To make a product support shared subscription add on the product page the following metadata:
billing_supports_shared_subscriptions
= true
You can see your list of active products on the Stripe dashboard.
This will ensure that users who subscribed to this product will be able to add/remove users to their subscriptions from their customer portal. They will be able to set users as managers of the shared subscription too.
A shared subscription always has an owner that can manage it from his customer portal
To manually set a Stripe customer as the owner of the subscription, add the following metadata to the subscription from the Stripe Dashboard
billing_shared_subscription_owner
= cus_***
where cus_***
is the customer id of the owner
To manually set a Stripe customer as a user/manager of a shared subscription, add the following metadata to the customer who is sharing the subscription (not the owner) from the Stripe Dashboard
billing_shared_subscription_role
= user
or manager
billing_shared_subscription_id
= sub_***
Where sub_***
is the subscription id of the shared subscription.
This will ensure that the customer is on the shared subscription and this will consume one license from the shared subscription plan.
Please note that if you add more users to a shared subscription than the number of licenses on the subscription, the subscription won't be updated accordingly and the owner won't be charged more. You will have to update the shared subscription manually.