Skip to main content

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​

ParameterTypeRequiredDescription
event_idint64YesThe 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​

StatusCodeDescription
400invalid_event_idThe provided event ID is not valid
401unauthorizedMissing or invalid authentication token
404event_not_foundNo event exists with this ID