Class CreatePlaylistRequest
- java.lang.Object
-
- se.michaelthelin.spotify.requests.AbstractRequest<T>
-
- se.michaelthelin.spotify.requests.data.AbstractDataRequest<Playlist>
-
- se.michaelthelin.spotify.requests.data.playlists.CreatePlaylistRequest
-
public class CreatePlaylistRequest extends AbstractDataRequest<Playlist>
Create a playlist for a Spotify user. (The playlist will be empty until you add tracks with anAddItemsToPlaylistRequest.)
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classCreatePlaylistRequest.BuilderBuilder class for building aCreatePlaylistRequest.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Playlistexecute()Create a new playlist.-
Methods inherited from class se.michaelthelin.spotify.requests.AbstractRequest
bodyParametersToJson, deleteJson, executeAsync, getBody, getBodyParameters, getContentType, getHeaders, getHttpManager, getJson, getUri, initializeBody, postJson, putJson
-
-
-
-
Method Detail
-
execute
public Playlist execute() throws IOException, SpotifyWebApiException, org.apache.hc.core5.http.ParseException
Create a new playlist.- Returns:
- The newly created
Playlist. - Throws:
IOException- In case of networking issues.SpotifyWebApiException- The Web API returned an error further specified in this exception's root cause.org.apache.hc.core5.http.ParseException
-
-