Class GetMultipleArtistsRequest
- java.lang.Object
-
- de.sonallux.spotify.api.apis.artists.GetMultipleArtistsRequest
-
public class GetMultipleArtistsRequest extends Object
Get Multiple Artists requestResponse
On success, the HTTP status code in the response header is
200OK and the response body contains an object whose key is"artists"and whose value is an array of artist objects in JSON format.Objects are returned in the order requested. If an object is not found, a
nullvalue is returned in the appropriate position. Duplicateidsin the query will result in duplicate objects in the response. On error, the header status code is an error code and the response body contains an error object.
-
-
Constructor Summary
Constructors Constructor Description GetMultipleArtistsRequest(ApiClient apiClient, String ids)Get Multiple Artists request
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ApiCall<Artists>build()Build the request into an executable call
-
-
-
Constructor Detail
-
GetMultipleArtistsRequest
public GetMultipleArtistsRequest(ApiClient apiClient, String ids)
Get Multiple Artists request
- Parameters:
apiClient-The API client
ids-A comma-separated list of the Spotify IDs for the artists. Maximum: 50 IDs.
-
-