Cloud Enterprise Object Storage REST API

Search (SHIFT+S)




Modified since last release

Get CAS Secret For User

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

Gets cas secret for the specified namespace and user identifier.

namespaceNamespace for which to get CAS secret
uidValid user identifier to get the key from

Required Roles

Requires one of the following roles:

  • SYSTEM_ADMIN

  • NAMESPACE_ADMIN


Response Body

Representation of CAS secret for the given user and namespace.

Field Description Type Notes
user_cas_secret
cas_secret CAS secret String

Examples

Request
GET https://192.168.0.0:4443/object/user-cas/secret/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_secret>
    <cas_secret>secret</cas_secret>
</user_cas_secret>