protocol.AddToPlayerRequest
This request allows you to add all tracks in the database that match the supplied item ids to the supplied player's track queue. You can either append tracks to queue or replace tracks currently in the queue.
Parameter | Optional | Max Allowed | DataType | Notes |
---|---|---|---|---|
cid | no | 1 | text | client id. used to track origin of any particular message |
id | no | unbounded | integer | player id. starts at 1 |
app | no | 1 | boolean | append to or replace queue. on/off |
items | no | 1 | list | a list of track,genre,album,playlist,composer and/or artist id's |
Example xml:
<sireq> <cid>Mum</cid> <fn> <addToPlayer> <id>1</id> <app>on</app> <items> <arid>45435434354343</arid> <trid>12121212121</trid> <trid>12121212121</trid> <alid>232322323</alid> <grid>232322323</grid> <plid>232322323</plid> <cpid>5435455435</cpid> </items> </addToPlayer> </fn> </sireq>