Cancel a multipart upload and cleanup any temporary data.
Input
Encoding
application/jsonuploadId
string
Required
Upload session ID from initiateUpload
maxLength: 256 bytesOutput
Encoding
application/jsonstatus
string
Required
Always 'aborted' on success
Errors
InvalidUploadId
AbortFailed
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "procedure",
"input": {
"schema": {
"type": "object",
"required": [
"uploadId"
],
"properties": {
"uploadId": {
"type": "string",
"maxLength": 256,
"description": "Upload session ID from initiateUpload"
}
}
},
"encoding": "application/json"
},
"errors": [
{
"name": "InvalidUploadId"
},
{
"name": "AbortFailed"
}
],
"output": {
"schema": {
"type": "object",
"required": [
"status"
],
"properties": {
"status": {
"type": "string",
"const": "aborted",
"maxLength": 16,
"description": "Always 'aborted' on success"
}
}
},
"encoding": "application/json"
},
"description": "Cancel a multipart upload and cleanup any temporary data."
}