New customer setup
Dashboard handoff and API preflight sequence for a fresh Tyxter customer before an agent starts sending production WhatsApp traffic.
Handoff path
- Owner/admin signs in at
https://tyxter.com/login. - Owner/admin creates an agent-scoped API key for the selected sandbox or production environment.
- Owner/admin completes setup that requires elevated scopes, such as Meta connection, phone-number provisioning, billing, and payment-provider setup.
- 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
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.
Confirms whether WhatsApp is connected for the key environment. Stop if channels.whatsapp.ready is false.
Find an active sender id before production sends. Do not fabricate phone-number ids or reuse examples from docs.
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
Sandbox keys can use this single diagnostic to confirm sandbox scenarios, webhook listening, and default sender readiness.