Class FollowArtistsUsersRequest
- java.lang.Object
-
- de.sonallux.spotify.api.apis.follow.FollowArtistsUsersRequest
-
public class FollowArtistsUsersRequest extends Object
Follow Artists or Users requestRequired OAuth scopes
user-follow-modifyResponse
On success, the HTTP status code in the response header is
204No Content and the response body is empty. On error, the header status code is an error code and the response body contains an error object.
-
-
Constructor Summary
Constructors Constructor Description FollowArtistsUsersRequest(ApiClient apiClient, String type, List<String> ids)Follow Artists or Users request
-
-
-
Constructor Detail
-
FollowArtistsUsersRequest
public FollowArtistsUsersRequest(ApiClient apiClient, String type, List<String> ids)
Follow Artists or Users request
- Parameters:
apiClient-The API client
type-The ID type.
ids-A JSON array of the artist or user Spotify IDs. For example:
{ids:["74ASZWbe4lXaubB36ztrGX", "08td7MxkoHQkXnWAYD8d6Q"]}. A maximum of 50 IDs can be sent in one request. Note: if theidsparameter is present in the query string, any IDs listed here in the body will be ignored.
-
-