Return a list of the chunks uploaded to the upload session so far.
D5E3F7AThe ID of the upload session.
10001000The maximum number of items to return per page.
10000The offset of the item at which to begin the response.
Returns a list of parts that have been uploaded.
An unexpected client error.
curl -X GET https://upload.box.com/api/2.0/files/upload_sessions/F971964745A5CD0C001BBE4E58196BFD/parts \
-H 'Authorization: Bearer <ACCESS_TOKEN>'//The following snippet retrives first 1000 parts that are uploaded.
BoxFileUploadSessionPartList partList = session.listParts(0, 1000);
List<BoxFileUploadSessionPart> parts = partList.getEntries();parts = client.upload_session('11493C07ED3EABB6E59874D3A1EF3581').get_parts()
for part in parts:
print('Part {0} at offset {1} has already been uploaded'.format(part['part_id'], part['offset']))// Get the list of parts already uploaded
client.files.getUploadSessionParts('93D9A837B45F', {limit: 100}, callback);