GET buckets/list?key={key}&requestTime={requestTime}&signature={signature}
Lists all the buckets that belong to the given key.
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
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 list of all buckets owned by the given key.
ListBucketsResponseName | Description | Type | Additional information |
---|---|---|---|
Buckets | Collection of Object |
None. |
|
Success | boolean |
None. |
|
Error | string |
None. |
Response Formats
application/xml, text/xml
Sample:
<ListBucketsResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <Error>sample string 2</Error> <Success>true</Success> <Buckets i:nil="true" /> </ListBucketsResponse>
application/json, text/json
Sample:
{ "Buckets": null, "Success": true, "Error": "sample string 2" }