Skip to content
DocumentationAPI Reference

Pause Playback

Me.Player.PausePlayback(PlayerPausePlaybackParams?parameters, CancellationTokencancellationToken = default)
PUT/me/player/pause

Pause playback on the user's account. 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
PlayerPausePlaybackParams parameters
string deviceID

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

Pause Playback

PlayerPausePlaybackParams parameters = new();

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