Report an uploaded part

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.

KeyDatatype of valueDescription of value
headersObject of String keys to String valuesA 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.
bodyObjectReserved for future use

Example request body

{
    "part_number":1,
    "response":{
        "headers":{
            "ETag":"7f1b6da3131455a413e8b01a27d30b0c"
        }
    }
}

Response

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

Language