Base URL
Forum Types
The platform supports six different forums with two routing patterns:Dynamic Forums (1, 2, 4, 6)
These forums use dynamic routing with configurable question counts:Special Forums
Forum 3 - Table-Based Responses
Forum 3 uses a specialized schema with complex table fields for question 6:- Regular questions: r1 through r5, r7, r8
- Table question (6): 7 rows × 3 columns with format
t6_r{row}_c{col} - Dedicated endpoints:
/guardar_en_foro_3,/respuestas_en_foro_3
Forum 5 - Image Uploads
Forum 5 handles multipart form data with image uploads:- Text responses: r2, r3, r4, r5, r6
- Image for question 3: Single file upload (
imagen_pregunta_3) - Table images: Array of 3 images for table questions
- Endpoint:
/guardar_foro5/{email}(FormData)
Common Endpoints Pattern
All forums share these endpoint types:Submit
POST endpoint to save forum responses
Retrieve
GET endpoint to fetch all responses with user data
Verify
GET endpoint to check if user already participated
Dynamic Routing
For forums 1, 2, 4, and 6, replace{foro_id} with the forum number:
Response Features
All GET endpoints for responses attempt to JOIN with the
usuarios table to include nombre and apellidos fields. If the JOIN fails, only forum response data is returned.Duplicate Prevention
All submission endpoints check for existing responses by email and return success without inserting duplicates:Next Steps
Submit Responses
Learn how to submit forum responses
Retrieve Data
Fetch and verify forum participation