Welcome to the Forum Creation API documentation! This guide explains how to set up a new forum using our RESTful API. Follow these steps to get started:

  1. Initialize the Forum
    Use the /api/forum/create endpoint to register a new forum. Required parameters include:

    • name (string)
    • description (string)
    • category (string)

    ✅ Example request:

    POST /en/api/forum/create HTTP/1.1
    Content-Type: application/json
    
    {
      "name": "Tech Discussions",
      "description": "Explore latest trends in technology",
      "category": "technology"
    }
    
  2. Configure Permissions
    Set access rules via /api/forum/permissions to control user interactions. Supported options:

    • public (default)
    • private (requires login)

    🔒 Tip: Use /en/api/auth/tokens to generate admin access tokens for advanced settings.

  3. Integrate with Frontend
    Access the forum dashboard at /en/api/forum/overview to manage topics and users.

    📊 Recommended: Use the /en/api/analytics endpoint to track forum activity metrics.

For visual examples, see:

api_forum_creation
rest_api_forum

Expand your knowledge by exploring the Forum Overview API.