POST
DeleteEpisodeLastSeen
DeleteEpisodeLastSeen removes saved playback progress for one episode.
/api.v1.watch.WatchService/DeleteEpisodeLastSeen Bearer required01
Request
DeleteEpisodeLastSeenRequest
DeleteEpisodeLastSeenRequestapi.v1.watch.DeleteEpisodeLastSeenRequest3 fields
DeleteEpisodeLastSeenRequest identifies one episode progress record to delete.
slugstringURL-friendly identifier for the anime.
seasonstringSeason identifier.
episodestringEpisode identifier.
{
"slug": "frieren",
"season": "1",
"episode": "1"
}02
Response
DeleteEpisodeLastSeenResponse
DeleteEpisodeLastSeenResponseapi.v1.watch.DeleteEpisodeLastSeenResponse1 fields
DeleteEpisodeLastSeenResponse confirms progress deletion.
messagestringA descriptive message indicating the result.
{
"message": "success"
}03
Error handling
Common failure codes
unauthenticatedThe Bearer token is missing or invalid.
invalid_argumentThe request payload failed validation.
internalThe service could not complete the operation.