Partners

Partners build SeeItLive into their own products and refer customers to us. This page covers how the partner program works — from integrating to getting paid.

Becoming a partner

The partner program is for products that want to embed live sessions or refer their users to SeeItLive and earn commission on the business they bring. You apply, get approved, and receive partner credentials to start integrating.

  1. Apply through your account and agree to the partner terms.
  2. Once approved, you get OAuth credentials for connecting customer accounts.
  3. Referred customers are attributed to you automatically for commission.
Note

The partner agreement spells out commission rates, attribution, and payout terms — read it in full before you start referring customers.

OAuth integration

Partners connect customer accounts using OAuth with authorization-code and PKCE. Your app sends the customer to SeeItLive to authorise, and you receive a team-bound token scoped to just what your integration needs — never the customer's full credentials.

  1. Redirect the customer to the SeeItLive authorization screen.
  2. They approve the scopes your app is requesting.
  3. You exchange the returned code for a scoped, team-bound access token.
Tip

Request only the scopes your integration actually uses — customers are far more likely to approve a connection that asks for the minimum.

Connect SDK

The Connect SDK wraps the OAuth flow and the SeeItLive API so you can add the whole "connect your SeeItLive account" experience without hand-rolling token exchange, storage, and refresh. It handles the handshake and gives you a ready-to-use client.

Commission tracking

Every customer referred through your partner credentials is attributed to you, and the commission you've earned is tracked in your partner dashboard. You can see attributed accounts and accrued commission without any manual reconciliation.

Payouts

Accrued commission is paid out to your connected payout account on the program's schedule. Keep your payout details current so payments aren't delayed.

Heads up

Payouts can only be sent once your payout account is connected and verified — set this up before your first commission is due.

Best practices

A few things that make partner integrations succeed:

  • Request minimal OAuth scopes and explain to customers why you need them.
  • Store tokens securely on your server and handle refresh cleanly.
  • Test the whole connect flow in a sandbox before going live.
  • Read the partner agreement so commission and attribution hold no surprises.
Partners