POST /api/v1/users/me/watchlist/{event_id}
Adds an event to the currently authenticated user's watchlist. If the event is already in the watchlist, the request is idempotent and returns success.
Authentication​
Required. Bearer token must be included in the Authorization header.
Request​
Path Parameters​
| Parameter | Type | Required | Description |
|---|---|---|---|
event_id | int64 | Yes | The ID of the event to add |
No request body required.
Example​
curl -X POST https://intotes.com/api/v1/users/me/watchlist/501 \
-H "Authorization: Bearer <token>"
Response​
200 OK​
{}
Errors​
| Status | Code | Description |
|---|---|---|
| 400 | invalid_event_id | The provided event ID is not valid |
| 401 | unauthorized | Missing or invalid authentication token |
| 404 | event_not_found | No event exists with this ID |