ListUploadedParts

Updated at: 2025-03-21 11:03

Queries the file parts that are uploaded.

Debugging

You can run this interface directly in OpenAPI Explorer, saving you the trouble of calculating signatures. After running successfully, OpenAPI Explorer can automatically generate SDK code samples.

Authorization information

There is currently no authorization information disclosed in the API.

Request syntax

POST /v2/file/list_uploaded_parts HTTP/1.1

Request parameters

ParameterTypeRequiredDescriptionExample
ParameterTypeRequiredDescriptionExample
bodyobjectNo

The request parameters.

part_number_markerintegerNo

The pagination token that is used in the next request to retrieve a new page of results. You do not need to specify this parameter for the first request. You must specify the token that is obtained from the previous query as the value of marker. By default, this parameter is left empty.

NWQ1Yjk4YmI1ZDRlYmU1Y2E0YWE0NmJhYWJmODBhNDQ2NzhlMTRhMg
limitintegerNo

The maximum number of results to return. Valid values: 1 to 100. Default value: 100.

100
upload_idstringYes

The ID of the upload task.

00166D06127B413BA1EC8ABB1144D101
file_idstringYes

The file ID.

322fb07b975f4b0ae1b543fe8475eee4c19eb2b2
drive_idstringNo

The drive ID. This parameter is required if the file is not uploaded by using the share URL of the file.

1
share_idstringNo

The share ID. This parameter is required if the file is uploaded by using the share URL of the file.

7JQX1FswpQ8

Response parameters

ParameterTypeDescriptionExample
ParameterTypeDescriptionExample
object

The response parameters.

file_idstring

The file ID.

322fb07b975f4b0ae1b543fe8475eee4c19eb2b2
upload_idstring

The ID of the upload task.

00166D06127B413BA1EC8ABB1144D101
uploaded_partsarray

The information about the file parts.

UploadPartInfo

The information about a file part.

next_part_number_markerstring

A pagination token. It can be used in the next request to retrieve a new page of results. If next_marker is empty, no next page exists.

NWQ1Yjk4YmI1ZDRlYmU1Y2E0YWE0NmJhYWJmODBhNDQ2NzhlMTRhMg
parallel_uploadboolean

Indicates whether the parallel upload feature is enabled.

false

Examples

Sample success responses

JSONformat

{
  "file_id": "322fb07b975f4b0ae1b543fe8475eee4c19eb2b2",
  "upload_id": "00166D06127B413BA1EC8ABB1144D101",
  "uploaded_parts": [
    {
      "part_number": 1,
      "part_size": 1024,
      "upload_url": "https://data.aliyunpds.com/xxx/xxx?Expires=xxx&OSSAccessKeyId=xxx&Signature=xxx&partNumber=1&uploadId=0CC175B9C0F1B6A831C399E269772661",
      "internal_upload_url": "https://data-vpc.aliyunpds.com/xxx/xxx?Expires=xxx&OSSAccessKeyId=xxx&Signature=xxx&partNumber=1&uploadId=0CC175B9C0F1B6A831C399E269772661",
      "etag": "\"0CC175B9C0F1B6A831C399E269772661\"",
      "parallel_sha1_ctx": {
        "h": [
          0
        ],
        "part_offset": 10240
      },
      "upload_form_info": {
        "bucket_name": "",
        "oss_end_point": "",
        "object_key": "",
        "oss_access_key_id": "",
        "oss_security_token": "",
        "policy": "",
        "signature": ""
      },
      "internal_upload_form_info": {
        "bucket_name": "",
        "oss_end_point": "",
        "object_key": "",
        "oss_access_key_id": "",
        "oss_security_token": "",
        "policy": "",
        "signature": ""
      },
      "signature_info": {
        "auth_type": "",
        "signature": "",
        "sts_token": ""
      },
      "parallel_sha256_ctx": {
        "h": [
          0
        ],
        "part_offset": 0
      }
    }
  ],
  "next_part_number_marker": "NWQ1Yjk4YmI1ZDRlYmU1Y2E0YWE0NmJhYWJmODBhNDQ2NzhlMTRhMg",
  "parallel_upload": false
}

Error codes

For a list of error codes, visit the Service error codes.

  • On this page (1)
  • Debugging
  • Authorization information
  • Request syntax
  • Request parameters
  • Response parameters
  • Examples
  • Error codes
Feedback