Skip to Content

DELETE /api/v1/watchlist/lists/:listId

Delete a watchlist and all its items (cascade delete). The default watchlist cannot be deleted.

Authentication: Required

Cache: None

Path Parameters

ParameterTypeRequiredDescription
listIdnumberYesList ID

Sample Request

curl -X DELETE -H "Authorization: Bearer YOUR_TOKEN" \ "https://api.grails.app/api/v1/watchlist/lists/2"

Response

// 200 OK { "success": true, "data": { "message": "List deleted" }, "meta": { "timestamp": "2026-04-08T00:00:00.000Z", "version": "1.0.0" } }

Error Responses

StatusCodeDescription
400CANNOT_DELETE_DEFAULTThe default watchlist cannot be deleted
403FORBIDDENList belongs to another user
404NOT_FOUNDList not found
Last updated on