List upload parts

GET/uploads/{upload_id}/parts

Lists the parts that the storage service has already received for the upload session.

Use this operation to resume an interrupted upload without resending parts that were already received. The result always reflects the current state reported by the storage service.

AuthorizationBearer <token>

Autonomous mode: the API credential secret, sent as a bearer token. Credential secrets are identified by a fixed prefix.

In: header

Path Parameters

upload_id*string

Public ID of the upload, prefixed with upl_.

Header Parameters

X-Client-Request-Id?string

Optional client-generated identifier of the request, up to 64 characters from [A-Za-z0-9._-]. Echoed back in the response and recorded in the request log; it never replaces the server-generated X-Request-Id.

Lengthlength <= 64

Response Body

application/json

application/json

application/json

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/uploads/string/parts"
{  "data": [    {      "etag": "string",      "object": "upload_part",      "part_number": 0,      "size_bytes": 0,      "uploaded_at": "2019-08-24T14:15:22Z"    }  ]}