StartConceptsPlaybooksFeature docsAPI & MCPChangelog
← All feature docs
Feature docs · /buy/enterprise

Enterprise pipeline

The self-serve enterprise funnel: a buyer fills in the order form, reviews a real contract, signs, and their workspace provisions automatically. Operators track every deal (sent, viewed, signed) from the admin dashboard.

Overview

Bigger accounts don't buy through the per-seat storefront. /buy/enterprise captures an enterprise order (company, authorized signer, seats, term, and annual contract value or ACV), renders a real order-form contract, and gives the buyer a private signing link. When they sign, the server provisions their workspace and sends a welcome email.

This is the "sales-assisted" path alongside the self-serve pricing page. Same entitlement model underneath; the enterprise flow just adds a contract, a signature, and ACV invoicing on top.

The contract lifecycle

Every deal moves through a tracked lifecycle so nothing stalls silently:

Unsigned contracts get automatic nudge emails at 3 days and 7 days, each sent once. If the deadline lapses first, the deal is marked expired and no further reminders fire.

Tracking deals (admin)

The admin dashboard has an Enterprise contracts table: every deal with its live status, buyer, ACV, seat count, and sent / viewed / signed dates, plus the age of each open deal. A summary line shows how many contracts are open and the total ACV awaiting signature. A deal past its deadline shows as Expired immediately, even before the cron flips it in the database.

How the buyer signs

  1. Fill in the order form at /buy/enterprise (company, signer, seats, term, ACV, billing details).
  2. The signing link is emailed to the work email entered on the form; it is never shown directly in the browser after submitting. This proves the requester controls that inbox before any workspace or invoice is created against it.
  3. Open the emailed link (the rendered order form with the full terms).
  4. Confirm to sign. The workspace provisions automatically and a welcome email with the login link follows immediately.
  5. Sign in with the signer's email and invite the team from Team admin.

Annual contract value and seat count are capped at self-serve-sane ceilings ($2M ACV / 100,000 seats); larger deals should go through a sales-assisted process instead of this form.

Operator setup

Reminder emails and provisioning work with no extra configuration; email is an honest no-op (printed to logs) until RESEND_API_KEY is set. The optional integrations are documented in the operator runbook:

Related