Get Bucket List

Get Bucket List

Operation ID: getBucketList
Get the bucket list of the storage tenant

Request
URI
GET
https://{api_host}/osis/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


Authentication
This operation uses the following authentication methods.
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
    }
}
items
Optional

items

page_info
Optional

page_info


501

The optional API is not implemented

Operation doesn't return any data structure