POST download/url
Gets the presigned url to download the object.
Request Information
URI Parameters
None.
Body Parameters
DownloadRequestName | Description | Type | Additional information |
---|---|---|---|
XssBucket | string |
None. |
|
Path | string |
None. |
|
Key | string |
None. |
|
Signature | string |
None. |
|
RequestTime | integer |
None. |
Request Formats
application/xml, text/xml
Sample:
<DownloadRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <Key>sample string 3</Key> <Path>sample string 2</Path> <RequestTime>5</RequestTime> <Signature>sample string 4</Signature> <XssBucket>sample string 1</XssBucket> </DownloadRequest>
application/json, text/json
Sample:
{ "XssBucket": "sample string 1", "Path": "sample string 2", "Key": "sample string 3", "Signature": "sample string 4", "RequestTime": 5 }
Response Information
Resource Description
The presigned url to download the object.
DownloadResponseName | Description | Type | Additional information |
---|---|---|---|
Url | string |
None. |
|
Success | boolean |
None. |
|
Error | string |
None. |
Response Formats
application/xml, text/xml
Sample:
<DownloadResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <Error>sample string 3</Error> <Success>true</Success> <Url>sample string 1</Url> </DownloadResponse>
application/json, text/json
Sample:
{ "Url": "sample string 1", "Success": true, "Error": "sample string 3" }