Class GetSeveralAudioFeaturesRequest
- java.lang.Object
-
- de.sonallux.spotify.api.apis.tracks.GetSeveralAudioFeaturesRequest
-
public class GetSeveralAudioFeaturesRequest extends Object
Get Audio Features for Several Tracks requestResponse
On success, the HTTP status code in the response header is
200 OKand the response body contains an object whose key is"audio_features"and whose value is an array of audio features 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 GetSeveralAudioFeaturesRequest(ApiClient apiClient, String ids)Get Audio Features for Several Tracks request
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ApiCall<AudioFeaturesArray>build()Build the request into an executable call
-
-
-
Constructor Detail
-
GetSeveralAudioFeaturesRequest
public GetSeveralAudioFeaturesRequest(ApiClient apiClient, String ids)
Get Audio Features for Several Tracks request
- Parameters:
apiClient-The API client
ids-A comma-separated list of the Spotify IDs for the tracks. Maximum: 100 IDs.
-
-
Method Detail
-
build
public ApiCall<AudioFeaturesArray> build()
Build the request into an executable call
-
-