Created Queue (markdown)

Qstick 2018-04-14 22:53:34 -04:00
parent 2b40716418
commit 2e8b40471a
1 changed files with 97 additions and 0 deletions

97
Queue.md Normal file

@ -0,0 +1,97 @@
**Endpoint: "/queue"**
## GET ##
##### Summary #####
Gets item in activity queue
##### Parameters ######
*None*
##### Returns JsonArray ######
```JSON
{
"page": 1,
"pageSize": 10,
"sortKey": "timeleft",
"sortDirection": "ascending",
"totalRecords": 3,
"records": [
{
"artistId": 518,
"albumId": 6455,
"quality": {
"quality": {
"id": 6,
"name": "FLAC"
},
"revision": {
"version": 1,
"real": 0
}
},
"size": 553272291.0,
"title": "Cream-Wheels Of Fire-2CD-FLAC-1986-FiXIE",
"sizeleft": 407361793.0,
"status": "Paused",
"trackedDownloadStatus": "Ok",
"statusMessages": [],
"downloadId": "52864e6ed0asdf4353cfa9416296f",
"protocol": "usenet",
"downloadClient": "NzbGet",
"id": 435807309
},
{
"artistId": 517,
"albumId": 6472,
"quality": {
"quality": {
"id": 6,
"name": "FLAC"
},
"revision": {
"version": 1,
"real": 0
}
},
"size": 456766154.0,
"title": "Bruce Springsteen-High Hopes-CD-FLAC-2014-PERFECT",
"sizeleft": 456766154.0,
"status": "Paused",
"trackedDownloadStatus": "Ok",
"statusMessages": [],
"downloadId": "7e059287ea535634324523d412b5a04",
"protocol": "usenet",
"downloadClient": "NzbGet",
"id": 1587434714
},
{
"artistId": 504,
"albumId": 6412,
"quality": {
"quality": {
"id": 6,
"name": "FLAC"
},
"revision": {
"version": 1,
"real": 0
}
},
"size": 570506235.0,
"title": "The Weeknd-Starboy-Deluxe Edition-CD-FLAC-2016-PERFECT",
"sizeleft": 570506235.0,
"status": "Paused",
"trackedDownloadStatus": "Ok",
"statusMessages": [],
"downloadId": "ac48c2cf7b34576745bbff5cc25",
"protocol": "usenet",
"downloadClient": "NzbGet",
"indexer": "NZBgeek",
"id": 466294042
}
]
}
```