| Contact | Donate | Imprint |
| PlaylistVideo | PlaylistModule | YouTubeCom |
| Property | Type | Entity | Reference | Module |
| (1) AddedAt | DATE | PlaylistVideo | ||
| (2) AddedByUser | LONG | PlaylistVideo | User | UserModule |
| (3) Playlist | LONG | PlaylistVideo | Playlist | PlaylistModule |
| (4) Position | LONG | PlaylistVideo | ||
| (5) Video | LONG | PlaylistVideo | Video | VideoModule |
| Remote Method | Local Method | Module | HTTP-Method | References |
| (1) /playlistvideo/video/{id} | findAllPlaylistVideoOfVideo(id) | PlaylistModule | GET | Video PlaylistVideo |
| (2) /playlistvideo/{id} | deletePlaylistVideoById(id) | PlaylistModule | DELETE | PlaylistVideo |
| (3) /playlistvideo/playlist/{id} | findAllPlaylistVideoOfPlaylist(id) | PlaylistModule | GET | Playlist PlaylistVideo |
| (4) /playlistvideo/{id} | findPlaylistVideoById(id) | PlaylistModule | GET | PlaylistVideo |
| (5) /playlistvideo/addedbyuser/{id} | findAllPlaylistVideoOfAddedByUser(id) | PlaylistModule | GET | User PlaylistVideo |
| (6) /playlistvideo/{id} | updatePlaylistVideoById(playlistvideo) | PlaylistModule | PUT | PlaylistVideo |
| (7) /playlistvideo | findAllPlaylistVideo() | PlaylistModule | GET | PlaylistVideo |
| (8) /playlistvideo | insertPlaylistVideo(playlistvideo) | PlaylistModule | POST | PlaylistVideo |
Example:
final PlaylistVideo playlistvideo = (PlaylistVideo) invokeModule(PLAYLIST_MODULE + "/playlistvideo/" + id, PlaylistVideo.class);| Contact | Donate | Imprint |