List current multipart uploads

/upload/multipart

This call returns the list of ongoing uploads.

https://cgc-api.sbgenomics.com/v2/upload/multipart

Request

Example request

GET /v2/upload/multipart HTTP/1.1
Host: cgc-api.sbgenomics.com
X-SBG-Auth-Token: 3210a98c1db9318fa9d9273156740f74
curl -s -H "X-SBG-Auth-Token: 3210a98c1db9318fa9d9273156740f74" -H "content-type: application/json" -X GET "https://cgc-api.sbgenomics.com/v2/upload/multipart"

Header Fields

NameDescription
X-SBG-Auth-Token
required
Your CGC authentication token.
Content-Type
required
application/json

Response

See a list of CGC-specific response codes that may be contained in the body of the response.

Example response body

{
  "items": [
    {
      "href": "http://cgc-api.sbgenomics.com/v2/upload/multipart/ezCeGmsWvyLwLjDdw3WNXXfs0EK4GpcHXijP37fP7o1jbdh24IAFEF7New5wYyli",
      "project": "RFranklin/my-project",
      "name": "1000G_phase1.indels.b37.vc",
      "initiated": "2016-03-11T15:15:21Z",
      "upload_id": "ezCeGmsWvyLwLjDdw3WNXXfs0EK4GpcHXijP37fP7o1jbdh24IAFEF7New5wYyli"
    },
    {
      "href": "http://cgc-api.sbgenomics.com/v2/upload/multipart/X5FKjV7JVCdg0cidZKIOOZRvAgahy9znuHq1PMsOZ85de6x53UOcJAcCDXANVTpm",
      "project": "RFranklin/my-project",
      "name": "1000G_omni2.5.b37.vcf",
      "initiated": "2016-03-11T16:05:28Z",
      "upload_id": "X5FKjV7JVCdg0cidZKIOOZRvAgahy9znuHq1PMsOZ85de6x53UOcJAcCDXANVTpm"
    }
  ]
}
Language