Direct buffered part upload. Alternative to using presigned URLs from getPartUploadUrl. Requires X-Upload-Id and X-Part-Number headers.
Input
Encoding
*/*Accepts raw binary data
Output
Encoding
application/jsonetag
string
Required
ETag of the uploaded part, required for completeUpload
Errors
InvalidUploadId
InvalidPartNumber
UploadFailed
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "procedure",
"input": {
"encoding": "*/*",
"description": "Raw binary part data"
},
"errors": [
{
"name": "InvalidUploadId"
},
{
"name": "InvalidPartNumber"
},
{
"name": "UploadFailed"
}
],
"output": {
"schema": {
"type": "object",
"required": [
"etag"
],
"properties": {
"etag": {
"type": "string",
"maxLength": 256,
"description": "ETag of the uploaded part, required for completeUpload"
}
}
},
"encoding": "application/json"
},
"description": "Direct buffered part upload. Alternative to using presigned URLs from getPartUploadUrl. Requires X-Upload-Id and X-Part-Number headers."
}