Unfollow Artists or Users
me().following().unfollow(FollowingUnfollowParamsparams = FollowingUnfollowParams.none(), RequestOptionsrequestOptions = RequestOptions.none())
DELETE/me/following
Remove the current user as a follower of one or more artists or other Spotify users.
Parameters
Unfollow Artists or Users
package dev.cjav.spotted.example
import dev.cjav.spotted.client.SpottedClient
import dev.cjav.spotted.client.okhttp.SpottedOkHttpClient
import dev.cjav.spotted.models.me.following.FollowingUnfollowParams
fun main() {
val client: SpottedClient = SpottedOkHttpClient.fromEnv()
client.me().following().unfollow()
}