Quickstart
Follow this sequence to go from empty workspace to a live integration endpoint.
- 1
Create a workspace
Start with Free (or Starter/Growth/Scale checkout) and sign in to the admin dashboard for your company.
- 2
Create an API key in Admin
Open Admin > API Keys, create a labeled key, then store the one-time secret in your application secret manager.
- 3
Create a T&C document container
Inside admin, create your first document slug (for example `marketplace`) that will own immutable versions.
- 4
Upload and publish a DOCX
Upload creates a new draft version. Publish now or schedule an effective timestamp.
- 5
Read latest content from your application
Call the latest endpoint with your company ref and document slug to render up-to-date Terms.
- 6
Subscribe to publish webhooks
Add a webhook endpoint so downstream systems can react immediately to published or rollback changes.
curl -X GET \
"https://your-platform-domain.com/api/v1/companies/acme/tnc/latest?documentSlug=marketplace" \
-H "Authorization: Bearer <api-key>" \
-H "Accept: application/json"