Playlist Api
Endpoints for retrieving information about a user’s playlists
Constructors
PlaylistApi
Link copied to clipboard
Functions
getPlaylist
Link copied to clipboard
suspend fun getPlaylist(playlist: String, market: Market? = null): Playlist?
Content copied to clipboard
getPlaylistCovers
Link copied to clipboard
getPlaylistCoversRestAction
Link copied to clipboard
fun getPlaylistCoversRestAction(playlist: String): SpotifyRestAction<List<SpotifyImage>>
Content copied to clipboard
getPlaylistRestAction
Link copied to clipboard
fun getPlaylistRestAction(playlist: String, market: Market? = null): SpotifyRestAction<Playlist?>
Content copied to clipboard
getPlaylistTracks
Link copied to clipboard
suspend fun getPlaylistTracks(playlist: String, limit: Int? = api.spotifyApiOptions.defaultLimit, offset: Int? = null, market: Market? = null): PagingObject<PlaylistTrack>
Content copied to clipboard
getPlaylistTracksRestAction
Link copied to clipboard
fun getPlaylistTracksRestAction(playlist: String, limit: Int? = api.spotifyApiOptions.defaultLimit, offset: Int? = null, market: Market? = null): SpotifyRestAction<PagingObject<PlaylistTrack>>
Content copied to clipboard
getUserPlaylists
Link copied to clipboard
suspend fun getUserPlaylists(user: String, limit: Int? = api.spotifyApiOptions.defaultLimit, offset: Int? = null): PagingObject<SimplePlaylist>
Content copied to clipboard
getUserPlaylistsRestAction
Link copied to clipboard
fun getUserPlaylistsRestAction(user: String, limit: Int? = api.spotifyApiOptions.defaultLimit, offset: Int? = null): SpotifyRestAction<PagingObject<SimplePlaylist>>
Content copied to clipboard
Properties
Inheritors
ClientPlaylistApi
Link copied to clipboard
Sources
common source
Link copied to clipboard