Class RemoveAlbumsUserRequest
- java.lang.Object
-
- de.sonallux.spotify.api.apis.library.RemoveAlbumsUserRequest
-
public class RemoveAlbumsUserRequest extends Object
Remove Albums for Current User requestRequired OAuth scopes
user-library-modifyResponse
On success, the HTTP status code in the response header is
200Success. On error, the header status code is an error code and the response body contains an error object. Trying to remove an album when you do not have the user's authorization returns error403Forbidden.
-
-
Constructor Summary
Constructors Constructor Description RemoveAlbumsUserRequest(ApiClient apiClient, List<String> ids)Remove Albums for Current User request
-
-
-
Constructor Detail
-
RemoveAlbumsUserRequest
public RemoveAlbumsUserRequest(ApiClient apiClient, List<String> ids)
Remove Albums for Current User request
- Parameters:
apiClient-The API client
ids-A JSON array of the Spotify IDs. For example:
["4iV5W9uYEdYUVa79Axb7Rh", "1301WleyT98MSxVHPZCA6M"]
A maximum of 50 items can be specified in one request. Note: if theidsparameter is present in the query string, any IDs listed here in the body will be ignored.
-
-