protocol.AddToPlayerArtistGenreRequest
This request allows you to add all tracks in the database that match the supplied artist and genre to the supplied player's queues. 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 |
arid | no | 1 | database id | artist id |
grid | no | 1 | database id | genre id |
Example xml:
<sireq> <cid>Mum</cid> <fn> <addToPlayerArtistGenre> <id>1</id> <app>on</app> <arid>45435434354343</arid> <grid>232322323</grid> </addToPlayerArtistGenre> </fn> </sireq>