playlist.addTrack

Description: 

Adds a track to a playlist


Authentication : REQUIRED
Parameters: 
apikey : application developer identifier [R]
country : catalogue country
format : output format
playlistCode : playlist identifier [R]
trackCode : identifier of the track to add [R]

Return values: 

Track position within the playlist


Sample call
http://api.playme.com/track.addTrack?playlistCode=45785&trackCode=115310&_PONY=12-dd6f1f38c007c83f5e4a0004056ca61r999999END

Sample Result: XML
<?xml version="1.0" encoding="UTF-8"?>
<response>
  <status>
    <code>200</code>
  </status>
  <trackCode>115310</trackCode>
  <position>1</position>
</response>

Sample Result: JSON
{
  "response": {
    "trackCode": "115310",
    "position": "1",
    "status": {
      "code": "200"
    }

  }
}