Check if Current User Follows Playlist
IReadOnlyList<Boolean> Playlists.Followers.Check(FollowerCheckParamsparameters, CancellationTokencancellationToken = default)
GET/playlists/{playlist_id}/followers/contains
Check to see if the current user is following a specified playlist.
Parameters
Check if Current User Follows Playlist
FollowerCheckParams parameters = new()
{
PlaylistID = "3cEYpjA9oz9GiPac4AsH4n"
};
var response = await client.Playlists.Followers.Check(parameters);
Console.WriteLine(response);[
true
]Returns Examples
[
true
]