| Contact | Donate | Imprint |
| WatchHistory | ProfileModule | AmazonPrimeVideo |
| Property | Type | Entity | Reference | Module |
| (1) CompletedAt | STRING | WatchHistory | ||
| (2) Episode | LONG | WatchHistory | Episode | EpisodeModule |
| (3) LastPositionSeconds | LONG | WatchHistory | ||
| (4) Profile | LONG | WatchHistory | Profile | ProfileModule |
| (5) ProgressPercent | STRING | WatchHistory | ||
| (6) Season | LONG | WatchHistory | Season | SeasonModule |
| (7) StartedAt | STRING | WatchHistory | ||
| (8) Title | LONG | WatchHistory | Title | TitleModule |
| Remote Method | Local Method | Module | HTTP-Method | References |
| (1) /watchhistory/{id} | findWatchHistoryById(id) | ProfileModule | GET | WatchHistory |
| (2) /watchhistory | insertWatchHistory(watchhistory) | ProfileModule | POST | WatchHistory |
| (3) /watchhistory/{id} | updateWatchHistoryById(watchhistory) | ProfileModule | PUT | WatchHistory |
| (4) /watchhistory | findAllWatchHistory() | ProfileModule | GET | WatchHistory |
| (5) /watchhistory/profile/{id} | findAllWatchHistoryOfProfile(id) | ProfileModule | GET | Profile WatchHistory |
| (6) /watchhistory/episode/{id} | findAllWatchHistoryOfEpisode(id) | ProfileModule | GET | Episode WatchHistory |
| (7) /watchhistory/{id} | deleteWatchHistoryById(id) | ProfileModule | DELETE | WatchHistory |
| (8) /watchhistory/title/{id} | findAllWatchHistoryOfTitle(id) | ProfileModule | GET | Title WatchHistory |
| (9) /watchhistory/season/{id} | findAllWatchHistoryOfSeason(id) | ProfileModule | GET | Season WatchHistory |
Example:
final WatchHistory watchhistory = (WatchHistory) invokeModule(PROFILE_MODULE + "/watchhistory/" + id, WatchHistory.class);| Contact | Donate | Imprint |