> ## Documentation Index
> Fetch the complete documentation index at: https://secdocs.asikoexpress.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Revoke all tokens for current user



## OpenAPI

````yaml /openapi/user-service.json post /v1/auth/logout
openapi: 3.0.0
info:
  title: Asiko User Service
  description: Auth, JWT, TOTP 2FA, retail + trade account management
  version: '1.0'
  contact: {}
servers:
  - url: https://asikodevapi.candourit.io
    description: Production (via api-gateway)
  - url: http://localhost:3000
    description: Local development (via api-gateway)
security: []
tags:
  - name: auth
    description: ''
  - name: users
    description: ''
  - name: addresses
    description: ''
paths:
  /v1/auth/logout:
    post:
      tags:
        - auth
      summary: Revoke all tokens for current user
      operationId: AuthController_logout
      parameters: []
      responses:
        '200':
          description: ''
      security:
        - bearer: []
components:
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: JWT
      type: http

````