| Contact | Donate | Imprint |
| WatchLater | UserModule | YouTubeCom |
| Property | Type | Entity | Reference | Module |
| (1) AddedAt | DATE | WatchLater | ||
| (2) User | LONG | WatchLater | User | UserModule |
| (3) Video | LONG | WatchLater | Video | VideoModule |
| Remote Method | Local Method | Module | HTTP-Method | References |
| (1) /watchlater/{id} | findWatchLaterById(id) | UserModule | GET | WatchLater |
| (2) /watchlater | insertWatchLater(watchlater) | UserModule | POST | WatchLater |
| (3) /watchlater/{id} | updateWatchLaterById(watchlater) | UserModule | PUT | WatchLater |
| (4) /watchlater | findAllWatchLater() | UserModule | GET | WatchLater |
| (5) /watchlater/video/{id} | findAllWatchLaterOfVideo(id) | UserModule | GET | Video WatchLater |
| (6) /watchlater/user/{id} | findAllWatchLaterOfUser(id) | UserModule | GET | User WatchLater |
| (7) /watchlater/{id} | deleteWatchLaterById(id) | UserModule | DELETE | WatchLater |
Example:
final WatchLater watchlater = (WatchLater) invokeModule(USER_MODULE + "/watchlater/" + id, WatchLater.class);| Contact | Donate | Imprint |