Workspaces and API keys
The platform is organized around workspaces. A workspace is the container for everything: channels, contacts, messages, campaigns, and balance. Your API key is tied to exactly one workspace — it cannot access resources from another. A user (the person logged into the dashboard) can be a member of multiple workspaces and switch between them. API automation uses keys, not user sessions — they are separate credentials for separate purposes.Bearer tokens
Every/v1 REST request carries:
- Keys are scoped to a workspace — not a user.
- Keys are created and revoked in the dashboard under Workspace settings.
- Rate limits apply per key.
Do not mix credentials
Use only API keys for/v1 REST calls. Do not substitute user session tokens or dashboard secrets — they are not interchangeable and will return 401.