Get started

New customer setup

Dashboard handoff and API preflight sequence for a fresh Tyxter customer before an agent starts sending production WhatsApp traffic.

Tyxter does not currently expose an anonymous login-to-key bootstrap endpoint. A dashboard owner or admin must sign in, choose the project and environment, and create the first key.

Handoff path

  1. Owner/admin signs in at https://tyxter.com/login.
  2. Owner/admin creates an agent-scoped API key for the selected sandbox or production environment.
  3. Owner/admin completes setup that requires elevated scopes, such as Meta connection, phone-number provisioning, billing, and payment-provider setup.
  4. The agent receives the API key as a secret and runs the preflight calls below before attempting sends.

Agent key limits

Agent-scoped keys are intended for day-to-day integration work. They cannot be granted api_keys:admin, billing:write, payments:write, agentic_payments:write, phone_numbers:write, or provider_connections:write. Use a standard dashboard-created key when the setup workflow must call provider or phone-number write APIs.

Preflight sequence

GET/v1/account
curl https://api.tyxter.com/v1/account \
  -H "authorization: Bearer $TYXTER_API_KEY"

Confirms the organization, project, environment, current key, scopes, and dashboard owner contact. Stop if the environment or owner does not match the human's instructions.

GET/v1/provider-connections/status

Confirms whether WhatsApp is connected for the key environment. Stop if channels.whatsapp.ready is false.

GET/v1/phone-numbers

Find an active sender id before production sends. Do not fabricate phone-number ids or reuse examples from docs.

GET/v1/templates

Before campaigns or template sends, confirm that the requested template name and language have an approved version. If not, send the owner to the template lifecycle instead of retrying the message.

Sandbox shortcut

GET/v1/sandbox/quickstart

Sandbox keys can use this single diagnostic to confirm sandbox scenarios, webhook listening, and default sender readiness.