Creating and Managing API Tokens
How to create, scope, constrain, and revoke API tokens from the dashboard.
Article details
Type, difficulty, plans, and last updated info.
▼
Article details
Type, difficulty, plans, and last updated info.
- Type
- Guide
- Difficulty
- Intermediate
- Plans
- Nano · Starter · Pro · Agency
- Last updated
- Aug 3, 2026
API tokens control what an application or agent can do on your account. Each token has a name, scopes, optional domain constraints, and an expiration date.
Connecting an MCP client? If it supports browser authorization, add
https://trekmail.net/mcpas a remote MCP server and approve access in the browser. You usually do not need to create or paste a token. Manualtm_live_tokens are for scripts, CI jobs, self-hosted MCP, and clients that do not support that flow. See Connecting AI Agents (MCP).
Before you start
- All plans can create API tokens, including Nano. Nano plans are limited to Email Verifier scopes (
verify:read,verify:write). - Starter plans allow read-only infrastructure scopes plus full Drive and Email Verifier scopes. Starter can also manage forwarding in the dashboard, but API forwarding write access (
mailboxes:forwarding:write) requires Pro or Agency. Pro and Agency unlock all scopes. - You must be the account owner to manage tokens.
- Tip: Click Start tour on the AI Agents & API page for a short walkthrough of connection options, tokens, connected apps, and the audit log.
Creating a Drive automation token
Drive API and MCP tools use ops tokens (tm_live_...). Select only the Drive scopes needed by the workflow:
- Read-only reporting:
drive:account:read,drive:mailbox:read, ordrive:addon:read. - Upload automation: add
drive:account:writeordrive:mailbox:write. - Public delivery links: add
drive:account:shareordrive:mailbox:share. - Permanent cleanup: use
drive:account:purgeordrive:mailbox:purgeonly in a separate, tightly controlled token.
Drive Add-on purchase, resize, and cancel are not available through API tokens. Agents may read add-on status and pricing with drive:addon:read, but subscription changes stay in the dashboard.
Creating a token
- Go to AI Agents & API → Tokens.
- Click Create token.
- Fill in the form:
- Name: A label to identify the token (e.g., "Claude Agent", "CI/CD Pipeline").
- Expiration: Choose 7 days, 30 days, 90 days, a custom date, or never.
- Scopes: Select which operations the token can perform. All allowed scopes are checked by default.
- Domain constraint: Choose "All domains" or select specific domains to restrict the token's access.
- Click Create token.
After creation, the plaintext token is displayed once. Copy it immediately or use the Download button to save it as a .txt file.
The token cannot be viewed again. TrekMail stores only the SHA-256 hash for security.
Creating a message token
Message tokens let agents read and send email from a specific mailbox. They are separate from ops tokens and are created programmatically via the API using your ops token.
To create a message token, your agent calls:
curl -s -X POST \
-H "Authorization: Bearer tm_live_your_ops_token" \
-H "Content-Type: application/json" \
-d '{"name":"my-agent","scopes":["messages:read","messages:send"]}' \
https://trekmail.net/api/v1/mailboxes/{MAILBOX_ID}/message-tokens
Choose the smallest scopes the workflow needs:
| Scope | Allows |
|---|---|
messages:read |
List and read messages, folders, attachments, contacts, calendar, identities, templates, and connected accounts. |
messages:write |
Change mailbox data: flags, moves, deletion, drafts, folders, contacts, calendar, identities, templates, and connected-account settings. It does not send mail. |
messages:send |
Send and schedule real email. For a manually created tm_msg_ token, also include messages:read or messages:write if the integration needs those actions. |
The plaintext token (tm_msg_...) is returned once. Add it to your MCP config as TREKMAIL_MESSAGE_TOKEN.
Message tokens are available on Pro and Agency plans. The ops token must have the mailboxes:message-tokens:manage scope.
For a connected Gmail or other external inbox, use external_account_id. To make recipients see an authorized business address instead, also use an identity_id returned by the identities endpoint. See Send As Addresses via API and MCP.
Token format
TrekMail uses two token prefixes to distinguish token types:
| Prefix | Token type | Purpose |
|---|---|---|
tm_live_ |
Ops token | Infrastructure operations (domains, mailboxes, DNS, forwarding, delete, migrations, SMTP, Cloudflare, tickets, account, billing) |
tm_msg_ |
Message token | Email operations (list, read, send, delete, move messages, list folders) |
The first 8 characters after the prefix are stored as a visible prefix in the dashboard for easy identification.
Scopes
Scopes control what the token can do. What you can pick depends on your plan:
- Nano — Email Verifier only (
verify:read,verify:write). Buy a Drive Storage Add-on and you also get the full Drive API and all 42 Drive MCP tools. - Starter — Full Drive, full Email Verifier, and read-only access to everything else (domains, mailboxes, forwarding, mail filters, auto-reply, migrations, tickets, SMTP, Cloudflare). For the writes that aren't on Starter API — creating migrations, replying to tickets, changing auto-reply, etc. — use the dashboard.
- Pro and Agency — Everything. Read, write, create, delete across all families, plus message tokens for full email read/send via the API.
See API Scopes and Plan Permissions for the per-scope reference.
Domain constraints
By default, tokens can access all domains on your account. To restrict a token to specific domains:
- Select Selected domains in the domain constraint section.
- Check the domains the token should access.
A constrained token will receive 404 responses when trying to access resources on other domains — the API behaves as if those domains do not exist.
Revoking a token
- Go to AI Agents & API → Tokens.
- Find the token in the list.
- Click Revoke.
- Confirm the revocation.
Revoked tokens stop working immediately. Any API request using a revoked token receives 401 Unauthorized.
Revocation is permanent and cannot be undone. Create a new token if you need to restore access.
Token status
Tokens have three states:
| Status | Meaning |
|---|---|
| Active | Token is valid and working. |
| Expired | The expiration date has passed. Create a new token. |
| Revoked | You manually revoked the token. Create a new token. |
Use the status filter on the Tokens page to view tokens by state.
Audit trail
Every token creation and revocation is logged in the Audit Log tab. Events include the token name, the action taken, your IP address, and a timestamp.
Quick fixes
- "Scopes not available on your plan": Your plan doesn't include those scopes. Nano sticks to
verify:readandverify:write(add a Drive Storage Add-on to also pick up thedrive:*scopes). Starter adds read access across the infra families plus full Drive and full Email Verifier. Pro and Agency unlock writes everywhere. - Lost the plaintext token: The token cannot be recovered. Revoke it and create a new one.
- Token works but returns 404 for some domains: The token likely has a domain constraint. Revoke and recreate with "All domains" or add the missing domains to the constraint.
Related articles
Jump to nearby guides that continue the workflow.