This call allows you to report the upload of a file part.
If you are using Seven Bridges Platform EU, please use the following endpoint:
https://eu-api.sbgenomics.com/v2/upload/multipart/{upload_id}/part
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 are the headers and other response elements described in getting upload URL for a file part, and their values are the 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 when the Seven Bridges Platform stores your files on Amazon S3.
Key | Datatype of value | Description of value |
---|---|---|
headers | Object of String keys to String values | A 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. |
body | Object | Reserved for future use |
{
"part_number": 1,
"response": {
"headers": {
"ETag": "1234e128411f2bace2sadfdabe610f30"
}
}
}