TYBA






protocol.CreatePlayerPlaylistRequest

CreatePlayerPlaylistRequest

This request allows you to create a new playlist from a particular player queue. Optionally range indices can be supplied to create a playlist from a subset of tracks in the queue. Playlists can be readonly that indicates to the server that it should not be modified and clients should not try to modify them.

ParameterOptionalMax AllowedDataTypeNotes
cidno1textclient id. used to track origin of any particular message
nmno1textname of the new playlist to create
idno1integerplayer id
rono1booleanis this a read only playlist
uidno1textuser id to bind playlist to. An empty value denotes a shared playlist
ixsyes1indicesstart (i0) and end (i1) index inclusive

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>
          </createPlayerPlaylist>
      </fn>
  </sireq>

 

back to index