From 032469fc1c43fb76fdf8882371391672dcfb87f0 Mon Sep 17 00:00:00 2001 From: Vidhu Kant Sharma Date: Sun, 13 Feb 2022 16:05:15 +0530 Subject: added function to delete anime from MAL List --- user/anime/animelist.go | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'user/anime/animelist.go') diff --git a/user/anime/animelist.go b/user/anime/animelist.go index 2099204..7fe81b8 100644 --- a/user/anime/animelist.go +++ b/user/anime/animelist.go @@ -28,6 +28,14 @@ import ( const BASE_URL string = "https://api.myanimelist.net/v2" const maxListLimit int = 1000 +// Delete an anime from user's anime list +func (c AnimeListClient)DeleteAnime(id int) string { + endpoint := fmt.Sprintf("%s/anime/%d/my_list_status", BASE_URL, id) + /* Returns 200 if anime successfully deleted + * Alternatively returns 404 if anime not in user's anime list */ + return c.requestHandler(endpoint, "DELETE") +} + // Get authenticated user's anime list func (c AnimeListClient) GetAnimeList(user, status, sort string, limit, offset int) (a.AnimeList, error){ var userAnimeList a.AnimeList -- cgit v1.2.3