API access to track list

Read 6666 times
I'm using the JSON api and it's working fine, however, I'm unable to find a method or action to retrieve all the songs (tracks) for a given playlist.   I'm trying to do this so that I can analyze my playlists outside of Centovo.  For example, I would like to programmatically find duplicates within my playlists.

Can someone provide some insight on how to get the server to return all the tracks for a given playlist.

Here's an example of the api call we are using to get the playlist meta-data for a specified playlist -- this works fine -- note that I've xxxxxx out identifying information:

http://xxx.xxx.xx.x/api.php?xm=server.playlist&f=json&a[username]=xxxxxl&a[password]=xxxxxxx&a[action]=list&a[playlist]=1602

Although this works, I'm stuck trying to access a list of all the songs within this playlist.

Thanks for any help on this!
Hello,

I've got the same problem. Is there any way to retrieve the songs list for a given playlist ?

Thanks !
The full playlist can be downloaded via the API.
Here's how:
1. Database export
http://xxx.xxx.xxx.xxx/api.php?xm=system.database&f=json&a[username]=$user&a[password]=$admin|$adminpassword&a[action]=export&a[filename]=/tmp/export.ccs
2. Copy exported file to user FTP storage:
http://xxx.xxx.xxx.xxx/api.php?xm=server.copyfile&f=json&a[username]=$user&a[password]=$admin|$adminpassword&a[sourcefile]=/tmp/export.ccs&a[destfile]=export.ccs
3. With FTP can download it from which to extract the playlist.

However, it has been unusable since v3.2.12.
But anyone who is smarter than me certainly has a better idea.