קיצורי דרך של מקלדת
חיפוש מתקדם
Is there any api call for to remove the movie or the tv show from the watchlist?
@melissacskn said: Remove Watchlist Item Is there any api call for to remove the movie or the tv show from the watchlist?
I've never used it. But I think it should be this one. https://developer.themoviedb.org/v4/reference/list-remove-items
Maybe using v3 will also work for TV, even though the page title is Movie, https://developer.themoviedb.org/reference/list-remove-movie
@ticao2 I think @melissacskn is talking about an account watchlist, not a general user list.
If that's the case, you just need to set the watchlist value to false. So to add an item:
watchlist
false
curl --request POST \ --url https://api.themoviedb.org/3/account/548/watchlist \ --header 'Authorization: Bearer XXXXXXX' \ --header 'accept: application/json' \ --header 'content-type: application/json' \ --data ' { "media_type": "movie", "media_id": 11, "watchlist": true } '
And then to remove an item:
curl --request POST \ --url https://api.themoviedb.org/3/account/548/watchlist \ --header 'Authorization: Bearer XXXXXXX' \ --header 'accept: application/json' \ --header 'content-type: application/json' \ --data ' { "media_type": "movie", "media_id": 11, "watchlist": false } '
@travisbell said: @ticao2 I think @melissacskn is talking about an account watchlist, not a general user list. If that's the case, you just need to set the watchlist value to false. So to add an item: curl --request POST \ --url https://api.themoviedb.org/3/account/548/watchlist \ --header 'Authorization: Bearer XXXXXXX' \ --header 'accept: application/json' \ --header 'content-type: application/json' \ --data ' { "media_type": "movie", "media_id": 11, "watchlist": true } ' And then to remove an item: curl --request POST \ --url https://api.themoviedb.org/3/account/548/watchlist \ --header 'Authorization: Bearer XXXXXXX' \ --header 'accept: application/json' \ --header 'content-type: application/json' \ --data ' { "media_type": "movie", "media_id": 11, "watchlist": false } '
@travisbell said:
Thank you this is what i was looking for👍🏻
.לא מצאת סרט או סדרה? היכנס כדי ליצור אותם
היכנס
הירשם
?רוצה לדרג או להוסיף פריט אל רשימה
?לא חבר אתר
הירשם והצטרף לקהילה
תגובה מאת ticao2 🇧🇷 pt-BR
ב-יוני 24, 2025 ב-9:43לפני חצות יום
I've never used it.
But I think it should be this one.
https://developer.themoviedb.org/v4/reference/list-remove-items
Maybe using v3 will also work for TV, even though the page title is Movie,
https://developer.themoviedb.org/reference/list-remove-movie
תגובה מאת Travis Bell
ב-יוני 24, 2025 ב-11:16לפני חצות יום
@ticao2 I think @melissacskn is talking about an account watchlist, not a general user list.
If that's the case, you just need to set the
watchlist
value tofalse
. So to add an item:And then to remove an item:
תגובה מאת melissacskn
ב-יוני 24, 2025 ב-4:38אחרי חצות יום
Thank you this is what i was looking for👍🏻