de.sonallux.spotify.api.apis.audiobooks.RemoveAudiobooksUserRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spotify-web-api-java Show documentation
Show all versions of spotify-web-api-java Show documentation
A Java wrapper for Spotify's Web API
The newest version!
package de.sonallux.spotify.api.apis.audiobooks;
import com.fasterxml.jackson.core.type.TypeReference;
import de.sonallux.spotify.api.http.ApiCall;
import de.sonallux.spotify.api.http.ApiClient;
import de.sonallux.spotify.api.http.Request;
import de.sonallux.spotify.api.models.*;
/**
* Remove User's Saved Audiobooks request
*
* Required OAuth scopes
* user-library-modify
*
* Response
* Audiobook(s) have been removed from the library
*/
public class RemoveAudiobooksUserRequest {
private static final TypeReference RESPONSE_TYPE = new TypeReference<>() {};
private final ApiClient apiClient;
private final Request request;
/**
* Remove User's Saved Audiobooks request
* @param apiClient The API client
* @param ids A comma-separated list of the Spotify IDs. For example: ids=18yVqkdbdRvS24c0Ilj2ci,1HGw3J3NxZO1TP1BTtVhpZ
. Maximum: 50 IDs.
*/
public RemoveAudiobooksUserRequest(ApiClient apiClient, String ids) {
this.apiClient = apiClient;
this.request = new Request("DELETE", "/me/audiobooks")
.addQueryParameter("ids", String.valueOf(ids))
;
}
/**
* Build the request into an executable api call
* @return an executable api call
*/
public ApiCall build() {
return apiClient.createApiCall(request, RESPONSE_TYPE);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy