[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-08-28 UTC."],[],[],null,["# Abort a multipart upload\n\nAborts an [XML API multipart upload](/storage/docs/multipart-uploads).\n\nOnce a multipart upload is aborted, any parts in the process of being uploaded\nfail, and future requests that use the relevant upload ID fail.\n\nQuery string parameters\n-----------------------\n\nSee [signed URL query string parameters](/storage/docs/authentication/canonical-requests#required-query-parameters) for information on the parameters\nyou include when creating and using [signed URLs](/storage/docs/access-control/signed-urls).\n\nRequest headers\n---------------\n\nRequest body elements\n---------------------\n\nThis request does not include an XML document in the request body.\n\nRequest syntax\n--------------\n\n```\nDELETE /OBJECT_NAME?uploadId=UPLOAD_ID HTTP/1.1\nHost: BUCKET_NAME.storage.googleapis.com\nDate: DATE\nContent-Length: 0\nAuthorization: AUTHENTICATION_STRING\n```\n\nResponse headers\n----------------\n\nThe request can return a variety of response headers depending on the request\nheaders you use.\n\nResponse body elements\n----------------------\n\nThe response does not include an XML document in the response body.\n\nExample\n-------\n\nThe following sample aborts a multipart upload for an object named `paris.jpg`.\n\n**Request** \n\n```\nDELETE /paris.jpg?uploadId=VXBsb2FkIElEIGZvciBlbHZpbmcncyBteS1tb3ZpZS5tMnRzIHVwbG9hZA HTTP/1.1\nHost: travel-maps.storage.googleapis.com\nDate: Tue, 23 Mar 2021 11:00:00 GMT\nContent-Length: 0\nAuthorization: Bearer ya29.AHES6ZRVmB7fkLtd1XTmq6mo0S1wqZZi3-Lh_s-6Uw7p8vtgSwg\n```\n\n**Response** \n\n```\nHTTP/1.1 204 OK\nDate: Tue, 23 Mar 2021 11:00:01 GMT\n```"]]