Welcome to the Thread Creation API documentation! This guide explains how to create new discussion threads on our platform using the /en/api/forum/threads/creation endpoint.

🛠️ Steps to Create a Thread

  1. Validate Permissions
    Ensure you have the necessary rights to post threads.

    validate_permissions
  2. Construct the Request
    Use the following parameters in your GET request:

    • title: Thread title (required)
    • content: Markdown-formatted message (required)
    • category_id: Target category ID (optional)
    • tags: Comma-separated tags (optional)
    construct_request
  3. Handle the Response
    A successful request returns a thread_id and creation_time.

    handle_response

📌 Example Request

GET /en/api/forum/threads/creation?title=Sample+Thread&content=Hello+world! HTTP/1.1  
Host: yourdomain.com  
Authorization: Bearer <token>  

🌐 Extend Your Knowledge

For advanced thread management, check out our Forum Management Guide.

Need help? 🤔 Contact support for assistance!