get https://api.thethings.io/v2/classes/me/
Returns all the collection's objects sorted by primary key in descending order.
curl -i -H "Accept: application/json" \
-H "Content-Type: application/json" \
-H "Authorization: SESSION_TOKEN" \
-X GET "https://api.thethings.io/v2/classes/me/Playlists" -k
{
"results" : [
{
_id: 25,
"name": "Dubstep Mix",
"duration" : 180
},
{
_id: 20,
"name": "Classic",
"duration" : 90
}
]
}