protocol.CreatePlayerPlaylistResponse
This response acts as an acknowledgment to its corresponding request.
Parameter | Optional | Max Allowed | DataType | Notes |
---|---|---|---|---|
cid | no | 1 | text | client id. used to track origin of any particular message |
nm | no | 1 | text | name of the new playlist to create |
id | no | 1 | integer | player id |
ro | no | 1 | boolean | is this a read only playlist |
uid | no | 1 | text | user id to bind playlist to. An empty value denotes a shared playlist |
ixs | yes | 1 | indices | start (i0) and end (i1) index inclusive |
plid | no | 1 | database id | playlist id |
Example xml:
<sireq> <cid>Mum</cid> <fn> <createPlayerPlaylist> <nm>Dells chill out tunes</nm> <id>1</id> <ro>1</ro> <uid></uid> <ixs> <i0>0</i0> <i1>9</i1> </ixs> <plid>5654646446456</plid> </createPlayerPlaylist> </fn> </sireq>