The Movie Database Support

Is there any api call for to remove the movie or the tv show from the watchlist?

3 replies (on page 1 of 1)

Jump to last post

@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:

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
}
'

Thank you this is what i was looking forπŸ‘πŸ»

Can't find a movie or TV show? Login to create it.

Global

s focus the search bar
p open profile menu
esc close an open window
? open keyboard shortcut window

On media pages

b go back (or to parent when applicable)
e go to edit page

On TV season pages

(right arrow) go to next season
(left arrow) go to previous season

On TV episode pages

(right arrow) go to next episode
(left arrow) go to previous episode

On all image pages

a open add image window

On all edit pages

t open translation selector
ctrl+ s submit form

On discussion pages

n create new discussion
w toggle watching status
p toggle public/private
c toggle close/open
a open activity
r reply to discussion
l go to last reply
ctrl+ enter submit your message
(right arrow) next page
(left arrow) previous page

Settings

Want to rate or add this item to a list?

Login