getSavedShowsRestAction

fun getSavedShowsRestAction(limit: Int? = api.spotifyApiOptions.defaultLimit, offset: Int? = null): SpotifyRestAction<PagingObject<SavedShow>>

Get a list of shows saved in the current Spotify user’s library. Optional parameters can be used to limit the number of shows returned.

Requires the SpotifyScope.USER_LIBRARY_READ scope

Api Reference

Return

Paging Object of SavedShow ordered by position in library

Parameters

limit

The number of objects to return. Default: 50 (or api limit). Minimum: 1. Maximum: 50.

offset

The index of the first item to return. Default: 0. Use with limit to get the next set of items

Sources

common source
Link copied to clipboard