| Contact | Donate | Imprint |
| Playlist | PlaylistModule | Spotify |
| Property | Type | Entity | Reference | Module |
| (1) CreatedAt | DATE | Playlist | ||
| (2) Description | STRING | Playlist | ||
| (3) IsAlgorithmic | BOOL | Playlist | ||
| (4) IsCollaborative | BOOL | Playlist | ||
| (5) IsEditorial | BOOL | Playlist | ||
| (6) OwnerUser | LONG | Playlist | ||
| (7) Title | STRING | Playlist |
| Remote Method | Local Method | Module | HTTP-Method | References |
| (1) /playlist/{id} | findPlaylistById(id) | PlaylistModule | GET | Playlist |
| (2) /playlist/{id} | updatePlaylistById(playlist) | PlaylistModule | PUT | Playlist |
| (3) /playlist | insertPlaylist(playlist) | PlaylistModule | POST | Playlist |
| (4) /playlist | findAllPlaylist() | PlaylistModule | GET | Playlist |
| (5) /playlist/{id} | deletePlaylistById(id) | PlaylistModule | DELETE | Playlist |
| (6) /playlistitem/playlist/{id} | findAllPlaylistItemOfPlaylist(id) | PlaylistModule | GET | Playlist PlaylistItem |
Example:
final Playlist playlist = (Playlist) invokeModule(PLAYLIST_MODULE + "/playlist/" + id, Playlist.class);| Contact | Donate | Imprint |