get Users Playlists
suspend fun getUsersPlaylists(userId: String, pagingOptions: PagingOptions = PagingOptions()): SpotifyApiResponse<UsersPlaylist>
Deprecated
Spotify marks GET /v1/users/{user_id}/playlists as deprecated. Prefer getCurrentUsersPlaylists() when possible.
Replace with
getCurrentUsersPlaylists(pagingOptions)Content copied to clipboard
Gets public playlists for a Spotify user.
Return
Wrapped Spotify API response with status code and parsed Spotify payload.
Parameters
user Id
Spotify user ID.
paging Options
Paging options (limit, offset) used for paged endpoints.