TYBA






protocol.CreatePlaylistRequest2

CreatePlaylistRequest2

This request allows you to create a new playlist and optionally add items to it at the same time. Playlists can be readonly that indicates to the server that it should not be modified and clients should not try to modify them. This class may be phased out some time in the future as a new class exists that is more flexible with respects to the generic type information on the supplied items allowing you to supply lists of any subclass of SiItem as well as a list of SiItem

ParameterOptionalMax AllowedDataTypeNotes
cidno1textclient id. used to track origin of any particular message
nmno1textname of the new playlist to create
itemsyes1lista list of track,genre,album,playlist and/or artist id's
rono1booleanis this a read only playlist
uidno1textuser id to bind playlist to. An empty value denotes a shared playlist

Example xml:


  <sireq>
      <cid>Mum</cid>
      <fn>
          <createPlaylist2>
              <nm>Dells chill out tunes</nm>
              <items>
                  <arid>45435434354343</arid>
                  <trid>12121212121</trid>
                  <trid>12121212121</trid>
                  <alid>232322323</alid>
              </items>
              <ro>1</ro>
              <uid>1</uid>
          </createPlaylist2>
      </fn>
  </sireq>

 

back to index