Skip to content

Commit 307d699

Browse files
committed
Added AddToQueue
1 parent 284d80f commit 307d699

File tree

3 files changed

+3824
-3825
lines changed

3 files changed

+3824
-3825
lines changed

SpotifyAPI.Docs/docs/web/player.md

+18
Original file line numberDiff line numberDiff line change
@@ -217,3 +217,21 @@ ErrorResponse error = _spotify.SetVolume(50);
217217
```csharp
218218
ErrorResponse error = _spotify.SetShuffle(false);
219219
```
220+
221+
---
222+
223+
## AddToQueue
224+
> Add an Item to the User's Playback Queue. BETA.
225+
226+
**Parameters**
227+
228+
|Name|Description|Example|
229+
|--------------|-------------------------|-------------------------|
230+
|uri|The uri of the item to add to the queue. Must be a track or an episode uri.| `spotify:track:7zrCVKp6x0AtolOsn2iMif`
231+
|[deviceId]| The id of the device this command is targeting. If not supplied, the user's currently active device is the target. | `"XXXX-XXXX-XXXX-XXXX"`
232+
233+
**Usage**
234+
235+
```csharp
236+
ErrorResponse error = _spotify.AddToQueue("spotify:track:7zrCVKp6x0AtolOsn2iMif");
237+
```

0 commit comments

Comments
 (0)