Skip to content
DocumentationAPI Reference

Unfollow Playlist

Playlists.Followers.Unfollow(FollowerUnfollowParamsparameters, CancellationTokencancellationToken = default)
DELETE/playlists/{playlist_id}/followers

Remove the current user as a follower of a playlist.

ParametersExpand Collapse
FollowerUnfollowParams parameters
required string playlistID

The Spotify ID of the playlist.

Unfollow Playlist

FollowerUnfollowParams parameters = new()
{
    PlaylistID = "3cEYpjA9oz9GiPac4AsH4n"
};

await client.Playlists.Followers.Unfollow(parameters);
Returns Examples