Cloud Enterprise Object Storage REST API

Search (SHIFT+S)




Modified since last release

Get Default Bucket

GET /object/user-cas/bucket/{namespace}/{uid}

Gets default bucket for the specified namespace and user identifier.

namespaceNamespace from which to get bucket
uidValid user identifier from which to get bucket

Required Roles

Requires one of the following roles:

  • SYSTEM_ADMIN

  • NAMESPACE_ADMIN


Response Body

Result with default bucket for the given user identifier and namespace

Field Description Type Notes
user_cas_bucket
name Default bucket for user String

Examples

Request
GET https://192.168.0.0:4443/object/user-cas/bucket/s3/wuser1@sanity.local HTTP/1.1 

Content-Type: application/xml
X-SDS-AUTH-TOKEN: <AUTH_TOKEN>
Response
HTTP/1.1 200 OK 
Content-Type: application/xml

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<user_cas_bucket>
    <name>standalone-bucket</name>
</user_cas_bucket>