> ## 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.

# إلغاء رمز المصادقة



## OpenAPI

````yaml /ar/api-reference/openapi/launch-auth-v1.yaml get /del-token
openapi: 3.0.3
info:
  title: واجهة برمجية لمصادقة Raydium Launch
  description: >-
    تدير مصادقة المحفظة لواجهات برمجية LaunchLab و Forum. تصدر رموز JWT بعد
    التحقق من توقيعات محافظ ed25519. الرموز مطلوبة لنشر التعليقات وإدارة المحتوى
    على واجهة برمجية 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: طلب والتحقق من رموز المصادقة
  - name: Utilities
    description: نقاط نهاية فحص الصحة
paths:
  /del-token:
    get:
      tags:
        - Token Management
      summary: إلغاء رمز المصادقة
      operationId: getDelToken
      parameters:
        - name: token
          in: query
          required: true
          schema:
            type: string
        - name: wallet
          in: query
          required: true
          schema:
            type: string
      responses:
        '200':
          description: تم إلغاء الرمز
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: true
                  data:
                    type: string
                    example: OK

````