Skip to main content
DELETE
/
api
/
v1
/
user
/
api-tokens
/
{token_id}
curl -X DELETE "https://app.talkover.ai/api/v1/user/api-tokens/token-uuid-1" \
  -H "Authorization: Bearer your_user_session_token"
{
  "message": "Token revoked"
}

Documentation Index

Fetch the complete documentation index at: https://docs.talkover.ai/llms.txt

Use this file to discover all available pages before exploring further.

Delete User API Token

Revoke a personal access token. The token is invalidated immediately and any further requests using it return 401.
This endpoint is part of the Account API and is authenticated with a user session token.

Endpoint

DELETE /api/v1/user/api-tokens/{token_id}

Path Parameters

token_id
string
required
ID of the token to revoke. Use List User API Tokens to find the ID.

Request Headers

Authorization
string
required
User session token. Format: Bearer <user_session_token>.

Examples

curl -X DELETE "https://app.talkover.ai/api/v1/user/api-tokens/token-uuid-1" \
  -H "Authorization: Bearer your_user_session_token"

Response

{
  "message": "Token revoked"
}

Notes

  • Revocation is immediate and irreversible.
  • Existing requests in flight using the revoked token will complete; new requests will fail with 401.