Skip to main content

DELETE /api/v1/users/me/watchlist/{event_id}

Removes an event from the currently authenticated user's watchlist.

Authentication​

Required. Bearer token must be included in the Authorization header.

Request​

Path Parameters​

ParameterTypeRequiredDescription
event_idint64YesThe ID of the event to remove

No request body required.

Example​

curl -X DELETE 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
404not_in_watchlistThe event was not found in the user's watchlist