键盘快捷键
高级搜索
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 的回复
于 2025 年 06 月 24 日 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 的回复
于 2025 年 06 月 24 日 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 的回复
于 2025 年 06 月 24 日 4:38下午
Thank you this is what i was looking for👍🏻