← All documentation
API & integrations
EnterpriseEnterprise subscribers API
List white-label subscribers and create branded signup invite URLs.
Access codes and license endpoints are retired. Invite clients with signup URLs on your custom domain instead.
GET /api/v1/enterprise/subscribers
List subscribers for your enterprise account. Query params: q (search), limit (max 200, default 100). Requires read scope.
POST /api/v1/enterprise/subscribers/invite
Create a branded signup URL. Body: plan (starter | pro | agency), optional email, optional externalRef. Requires write scope. Share signup_url with your client — they complete Connect Checkout on your domain.
curl -X POST https://springos.co/api/v1/enterprise/subscribers/invite \
-H "Authorization: Bearer sk_live_YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{
"plan": "pro",
"email": "owner@client.com",
"externalRef": "your-order-12345"
}'Requires an active custom domain and Stripe Connect with charges enabled for a smooth client checkout.