Skip to content
DocumentationAPI Reference

Follow Playlist

Playlists.Followers.Follow(FollowerFollowParamsparameters, CancellationTokencancellationToken = default)
PUT/playlists/{playlist_id}/followers

Add the current user as a follower of a playlist.

ParametersExpand Collapse
FollowerFollowParams parameters
required string playlistID

The Spotify ID of the playlist.

Boolean published

The playlist's public/private status (if it should be added to the user's profile or not): true the playlist will be public, false the playlist will be private, null the playlist status is not relevant. For more about public/private status, see Working with Playlists

Follow Playlist

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

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