Skip to content
DocumentationAPI Reference

Skip To Previous

Me.Player.SkipPrevious(PlayerSkipPreviousParams?parameters, CancellationTokencancellationToken = default)
POST/me/player/previous

Skips to previous track in the user’s queue. This API only works for users who have Spotify Premium. The order of execution is not guaranteed when you use this API with other Player API endpoints.

ParametersExpand Collapse
PlayerSkipPreviousParams parameters
string deviceID

The id of the device this command is targeting. If not supplied, the user's currently active device is the target.

Skip To Previous

PlayerSkipPreviousParams parameters = new();

await client.Me.Player.SkipPrevious(parameters);
Returns Examples