Restricted — requires a sponsorship program. These endpoints are only
available to partners who run a DSS sponsorship program. If you don’t have one
and want one, contact DSS. The rest of
the API (OAuth,
/v1/me/*, webhooks) needs no program.Base path & authentication
All partner endpoints live under/v1/partners/ and authenticate with HTTP
Basic, not the OAuth bearer flow the rest of the API uses. Send your partner
client_id as the username and client_secret as the password:
Endpoints
Every response is a public projection of a seat. Internal fields — such as
the Stripe subscription-item id — never cross this boundary.
Seat lifecycle
A seat moves through a small set of states. You’ll see these in thestatus
field of every response.
active is the only status that occupies your billable seat. converted,
cancelled and expired do not.
Billing model
- Each active seat is invoiced to the partner on a recurring basis, for as long as it stays active.
- Removing a seat (or a member converting to self-pay) issues a prorated credit to the partner for the unused remainder of that seat’s period.
- Billing is partner-facing only. An unpaid partner invoice never downgrades a crew member before their own term ends — the member keeps Premium for the term you provisioned, and billing disputes are settled partner-to-DSS.
- The per-member sponsored term (see
expires_at) is independent of your invoice cadence: it starts when the seat activates and runs for the program’s configured term length.
Commercial terms — the per-seat rate, invoice cadence, and settlement terms —
are covered in your program agreement, not in these docs.
Idempotency
Provisioning is idempotent per email within your program. Re-sending the same member never creates a second seat or a second bill — you get the existing open seat back with200 instead of 201. See
Provision a seat for the Idempotency-Key
header and the exact replay semantics.
Webhooks
There are no partner-subscribable webhook events for sponsorship seats in V1. Reconcile seat state by pollingGET /v1/partners/sponsorships on a schedule.
The webhook events catalogue covers the user.* events only,
which are delivered against OAuth scopes and are unrelated to sponsorship
billing.

