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

# انشر تعليقًا على مجموعة

> انشر تعليقًا جديدًا. يتطلب رأس ray-token.



## OpenAPI

````yaml /ar/api-reference/openapi/launch-forum-v1.yaml post /comment
openapi: 3.0.3
info:
  title: Raydium Launch Forum API
  description: >-
    Discussion API لمجموعات LaunchLab. انشر واسترجع التعليقات على رموز mint.
    يتطلب رأس `ray-token` (JWT من Auth API) لعمليات الكتابة.
  version: 1.0.0
servers:
  - url: https://launch-forum-v1.raydium.io
    description: Mainnet
  - url: https://launch-forum-v1-devnet.raydium.io
    description: Devnet
security: []
tags:
  - name: Comments
    description: انشر واسترجع تعليقات المجموعة
  - name: Utilities
    description: فحوصات الصحة
paths:
  /comment:
    post:
      tags:
        - Comments
      summary: انشر تعليقًا على مجموعة
      description: انشر تعليقًا جديدًا. يتطلب رأس ray-token.
      operationId: postComment
      parameters:
        - name: ray-token
          in: header
          required: true
          schema:
            type: string
          description: رمز JWT من Auth API
      requestBody:
        required: true
        content:
          multipart/form-data:
            schema:
              type: object
              required:
                - poolId
                - text
                - wallet
              properties:
                poolId:
                  type: string
                  description: معرّف المجموعة/Mint
                wallet:
                  type: string
                  description: محفظة المعلّق
                text:
                  type: string
                  description: نص التعليق (الحد الأقصى 2000 حرف)
                file:
                  type: string
                  format: binary
                  description: صورة اختيارية (الحد الأقصى 5MB)
      responses:
        '200':
          description: تم نشر التعليق بنجاح
        '400':
          description: طلب غير صحيح أو انتهاك المحتوى

````