Member watched films
Use the GetMemberWatchedFilms to get the list of films the authenticated member has previously watched.
The full film model, as well as other data related to each watched film, is included in the relatedData
property.
{
"films": [
{
"filmId": "string",
"watchCount": 0,
"lastWatchedAt": "2019-08-24T14:15:22Z"
}
],
"relatedData": {
"films": [],
"castAndCrew": [],
"genres": [],
"censorRatings": []
}
}
NOTE
Some properties have been omitted from the code snippet above for brevity.
Watch count
Each watched film has a watchCount
, indicating how many times the member has watched the film.
Last watched
Each watched film has a lastWatchedAt
timestamp, indicating when the film was last watched by the member.