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

# Thu hồi token xác thực



## OpenAPI

````yaml /vi/api-reference/openapi/launch-auth-v1.yaml get /del-token
openapi: 3.0.3
info:
  title: API Xác Thực Raydium Launch
  description: >-
    Quản lý xác thực ví cho các API LaunchLab và Forum. Cấp các token JWT sau
    khi xác minh chữ ký ví ed25519. Token là bắt buộc để đăng bình luận và quản
    lý nội dung trên API Forum.
  version: 1.0.0
servers:
  - url: https://launch-auth-v1.raydium.io
    description: Mainnet
  - url: https://launch-auth-v1-devnet.raydium.io
    description: Devnet
security: []
tags:
  - name: Token Management
    description: Yêu cầu và xác thực token xác thực
  - name: Utilities
    description: Các endpoint kiểm tra tình trạng
paths:
  /del-token:
    get:
      tags:
        - Token Management
      summary: Thu hồi token xác thực
      operationId: getDelToken
      parameters:
        - name: token
          in: query
          required: true
          schema:
            type: string
        - name: wallet
          in: query
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Token đã được thu hồi
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: true
                  data:
                    type: string
                    example: OK

````