v1

latestOpenAPI 3.0.02026-07-17120114186.8 KB
bus

List multipart uploads

Lists all ongoing multipart uploads.

post/bus/multipart/listuploads

Request body

bucketstring

The name of the bucket.

prefixstring

Filter uploads by key prefix

keyMarkerstring

Key to start listing from

uploadIDMarkerstring byte

Upload ID to start listing from

limitinteger

Maximum number of uploads to return

Example request

{
  "bucket": "default",
  "uploadIDMarker": "f1e2d3c4b5a697887776665544332211ffeeddccbbaa99887766554433221100"
}

Response

Successfully listed multipart uploads

hasMoreboolean

Whether there are more uploads to fetch

nextMarkerstring

The key marker for the next page of results

nextUploadIDMarkerstring byte

The upload ID marker for the next page of results

Example response

{
  "nextUploadIDMarker": "f1e2d3c4b5a697887776665544332211ffeeddccbbaa99887766554433221100",
  "uploads": [
    {
      "uploadID": "f1e2d3c4b5a697887776665544332211ffeeddccbbaa99887766554433221100"
    }
  ]
}