Report an uploaded part

/upload/multipart/{upload_id}/part

This call allows you to report the upload of a file part.

https://cgc-api.sbgenomics.com/v2/upload/multipart/{upload_id}/part

Request

Example request

POST /v2/upload/multipart/ezCeGmsWvyLwLjDdw3WNXXfs0EK4GpcHXijP37fP7o1jbdh24IAFEF7New5wYyli/part HTTP/1.1
Host: cgc-api.sbgenomics.com
X-SBG-Auth-Token: 3210a98c1db9318fa9d9273156740f74

{
  "part_number": 1,
  "response": {
    "headers": {
      "ETag": "be96ac61fa156d2d71ae61608f992554"
    }
  }
}
curl --data '{"part_number": 1, "response": {"headers": {"ETag": "be96ae61fa136d2d11ae61608f992554"}}}' -s -H "X-SBG-Auth-Token: 3210a98c1db9318fa9d9273156740f74" -H "content-type: application/json" -X POST "https://cgc-api.sbgenomics.com/v2/upload/multipart/ezCeGmsWvyLwLjDdw3WNXXfs0EK4GpcHXijP37fP7o1jbdh24IAFEF7New5wYyli/part"

Header Fields

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

Path parameters

NameDescription
upload_idThe ID for the upload, returned by the call to initialize a multipart upload.

Request body

In the body of the request, you should enter a JSON object key-value pairs describing the report. The keys, and their permitted values, are described below.

KeyDatatype of valueDescription of value
part_numberIntegerThe number of the file part you are reporting. Part numbers start from 1.
responseObjectThis object should contain the information collected from a successful HTTP part upload request.
See the Formatting the response object section below for an explanation of its structure.

Formatting the response object

When reporting a part, the structure of the response object is different from that of the report object received when getting a part upload URL. Assuming that you have collected the information from the HTTP part upload request, you should format the response object in this call as a set of key-value mappings. The keys in these mappings should be headers and other response elements described in Get upload URL for a file part, and their values should be strings that you have collected from the HTTP part upload request.

See the example below for an illustration of how to format a part report request.

KeyDatatype of valueDescription of value
headersObject of string keys to string valuesA map of header keys from the Get upload URL for a file part to their values returned by the successful HTTP part upload request you've made.
bodyObjectReserved for future use

Example request body

{
  "part_number": 1,
  "response": {
    "headers": {
      "ETag": "be96ae61fa136d2d11ae61608f992554"
    }
  }
}

Response

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

Example response body

HTTP/1.1 200 OK
Date: Tue, 29 Mar 2016 16:36:45 GMT
Content-Type: application/json
Connection: close
Language