Account API
Create User API Token
Create a new personal access token (PAT) for the current user
POST
Create User API Token
Create a new personal access token (PAT) for the current user. The full token value is returned only once in the response — store it securely.This endpoint is part of the Account API and is authenticated with a user session token.
Endpoint
Request headers
User session token. Format:
Bearer <user_session_token>.Must be set to
application/jsonRequest body
Human-readable name to identify the token (e.g., “CI Pipeline”, “Local Dev”). Max 255 characters.
Optional list of abilities to grant. Use
["*"] for full access. If omitted, full access is granted.Examples
Response
Notes
- Use the token as
Authorization: Bearer <token>in subsequent requests. - For environment-scoped automation (agents, calls, campaigns), use environment tokens (
talq_*) instead.