POST upload/{token}/{chunk}?key={key}&requestTime={requestTime}&signature={signature}

Uploads an individual chunk of a file.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
token

The upload token obtained from InitUpload.

string

Required

chunk

The chunk id.

string

Required

key

The key that was used to sign this request.

string

Required

requestTime

The time the request was made.

integer

Required

signature

The signature that proves that you are who you say you are.

string

Required

Body Parameters

None.

Response Information

Resource Description

A response indicating if the upload was successful or not.

UploadChunkResponse
NameDescriptionTypeAdditional information
Success

boolean

None.

Error

string

None.

Response Formats

application/xml, text/xml

Sample:
<UploadChunkResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <Error>sample string 2</Error>
  <Success>true</Success>
</UploadChunkResponse>

application/json, text/json

Sample:
{
  "Success": true,
  "Error": "sample string 2"
}