v1

latestOpenAPI 3.0.02026-07-17120114186.8 KB
bus

List parts of a multipart upload

Lists all parts that have been uploaded for a specific multipart upload.

post/bus/multipart/listparts

Request body

bucketstring

The name of the bucket.

keystring
uploadIDstring byte

The ID of the multipart upload

partNumberMarkerinteger

Part number to start listing from

limitinteger

Maximum number of parts to return

Example request

{
  "bucket": "default",
  "key": "folder/file",
  "uploadID": "f1e2d3c4b5a697887776665544332211ffeeddccbbaa99887766554433221100"
}

Response

Successfully listed multipart upload parts

hasMoreboolean

Whether there are more parts to fetch

nextMarkerinteger

The part number marker for the next page of results

Example response

{
  "parts": [
    {
      "partNumber": 123,
      "eTag": "W/\"33a64df551425fcc55e4d42a148795d9f25f89d4\""
    }
  ]
}