The /en/api/forum/threads/update
endpoint allows you to modify existing forum threads. Below are key details for developers:
🛠️ Endpoint Overview
- Method:
PUT
- Path:
/en/api/forum/threads/update
- Authentication: Requires valid API token in headers
- Rate Limit: 100 requests/day (per IP)
✅ Supported Actions
- Update thread title
- Modify content
- Change status (e.g., active, archived)
- Adjust category or tags
📌 Example Request
PUT /en/api/forum/threads/update HTTP/1.1
Content-Type: application/json
Authorization: Bearer <your_token>
{
"thread_id": 12345,
"title": "Updated Thread Title",
"content": "New content for the thread...",
"status": "archived"
}
📚 Related Resources
For advanced use cases, refer to the API Reference Manual. Always validate input data before submission! 🔄