Get Bucket List
Operation ID: getBucketList
Get the bucket list of the storage tenant
Request
URI
GET
https://{api_host}/api/v1/bucket-list
COPY
Query Parameters
string
tenant_id
Required
The ID of the storage tenant to get its bucket list
integer
offset
Optional
The start index of buckets to return
integer
limit
Optional
The maximum number of buckets to return
Responses
200
The bucket list of the storage tenant is returned
Returns
PageOfBucketMeta
of type(s)
application/json
{
"items": [
{
"name": "string",
"creation_date": "string",
"user_id": "string"
}
],
"page_info": {
"limit": 0,
"offset": 0,
"total": 0
}
}
array of
object
items
Optional
items
object
page_info
Optional
page_info
501
The optional API is not implemented
Operation doesn't return any data structure
Code Samples
COPY
curl -H 'Authorization: <value>' https://{api_host}/api/v1/bucket-list?tenant_id=v
Bucketlist Operations
GET
Get Bucket List