Class GetArtistsRelatedArtistsRequest
- java.lang.Object
-
- de.sonallux.spotify.api.apis.artists.GetArtistsRelatedArtistsRequest
-
public class GetArtistsRelatedArtistsRequest extends Object
Get an Artist's Related 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 up to 20 artist objects in JSON format. On error, the header status code is an error code and the response body contains an error object.
-
-
Constructor Summary
Constructors Constructor Description GetArtistsRelatedArtistsRequest(ApiClient apiClient, String id)Get an Artist's Related 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
-
GetArtistsRelatedArtistsRequest
public GetArtistsRelatedArtistsRequest(ApiClient apiClient, String id)
Get an Artist's Related Artists request
- Parameters:
apiClient-The API client
id-The Spotify ID for the artist
-
-