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​
| Parameter | Type | Required | Description |
|---|---|---|---|
event_id | int64 | Yes | The 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​
| Status | Code | Description |
|---|---|---|
| 400 | invalid_event_id | The provided event ID is not valid |
| 401 | unauthorized | Missing or invalid authentication token |
| 404 | not_in_watchlist | The event was not found in the user's watchlist |