POST /api/v1/events/suggest
Allows authenticated users to suggest a new event idea. The suggestion is submitted as free-form text and reviewed by the platform team.
Authentication​
Required. Any authenticated user.
Request​
| Parameter | Type | In | Description |
|---|---|---|---|
name | string | body | Required. Short event name / title |
description | string | body | Additional details about the suggested event |
Example​
curl -X POST "https://intotes.com/api/v1/events/suggest" \
-H "Authorization: Bearer <access_token>" \
-H "Content-Type: application/json" \
-d '{
"name": "Will Apple announce a foldable iPhone at WWDC 2026?",
"description": "Based on recent rumors about Apple developing a folding display"
}'
Response​
200 OK​
{}