Class CheckIfUserFollowsPlaylistRequest
- java.lang.Object
-
- de.sonallux.spotify.api.apis.follow.CheckIfUserFollowsPlaylistRequest
-
public class CheckIfUserFollowsPlaylistRequest extends Object
Check if Users Follow a Playlist requestRequired OAuth scopes
playlist-read-privateResponse
On success, the HTTP status code in the response header is
200OK and the response body contains a JSON array oftrueorfalsevalues, in the same order in which theidswere specified. On error, the header status code is an error code and the response body contains an error object.
-
-
Constructor Summary
Constructors Constructor Description CheckIfUserFollowsPlaylistRequest(ApiClient apiClient, String playlistId, String ids)Check if Users Follow a Playlist request
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ApiCall<List<Boolean>>build()Build the request into an executable call
-
-
-
Constructor Detail
-
CheckIfUserFollowsPlaylistRequest
public CheckIfUserFollowsPlaylistRequest(ApiClient apiClient, String playlistId, String ids)
Check if Users Follow a Playlist request
- Parameters:
apiClient-The API client
playlistId-The Spotify ID of the playlist.
ids-A comma-separated list of Spotify User IDs ; the ids of the users that you want to check to see if they follow the playlist. Maximum: 5 ids.
-
-