| tv_season_changes | R Documentation |
Look up a TV season's changes by season ID.
tv_season_changes(api_key, id, start_date = NA, end_date = NA)
api_key |
Your TMDb Consumer Key. |
id |
The TV show ID. |
start_date |
The date starting from which to search. Format YYYY-MM-DD. |
end_date |
The date until which to search. Format YYYY-MM-DD. |
This method is used in conjunction with the /tv/id/changes method. This method uses the season_id value found in the change entries.
A list with the following fields:
changes |
The type and the object of the change. |
Andrea Capozio
https://developers.themoviedb.org/3/getting-started
## Not run: ## An example of an authenticated request, ## where api_key is fictitious. ## You can obtain your own at https://www.themoviedb.org/documentation/api api_key <- "key" tv_season_changes(api_key = api_key , id = 3626) ## End(Not run)