Abort Multipart Upload Description Cancel a multipart upload that has been initiated but has not yet completed. This is an Amazon S3 compatible operation. See Abort Multipart Upload for Amazon S3 operation details. Requests Syntax DELETE http[s]://{datapathDNSname}/{bucket}/{object}/ ?upload_id={string} To determine the UUID of the multipart upload, see List Multipart Uploads. Request Parameters Parameter Description Required upload_id The UUID of the multipart upload. yes Responses Response Elements The operation returns status only. Notable status codes: § 204: No Content (success) § 404: Not Found Example Sample Request This request deletes the multipart upload with the UUID 18baa28f-1c85-4cd2-9023-71600b1759f3. DELETE http[s]://blackpearl-hostname/bucket1/test.aaf/ ?upload_id=18baa28f-1c85-4cd2-9023-71600b1759f3 HTTP/1.1 Sample Response HTTP/1.1 204 No Content