This call allows you to report the upload of a code package part.
If you are using Seven Bridges Platform EU, please use the following endpoint:
https://eu-api.sbgenomics.com/v2/automation/upload/{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](ref:get to-signed-url-from-or-specific-part). 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 a part upload URL](ref:get to-signed-url-from-or-specific-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":"7f1b6da3131455a413e8b01a27d30b0c"
}
}
}