Cloud Enterprise Object Storage REST API

Search (SHIFT+S)




Modified since last release

List Local Management Users

GET /vdc/users

Gets all configured local management users.


Required Roles

Requires one of the following roles:

  • SECURITY_ADMIN

  • SYSTEM_ADMIN

  • SYSTEM_MONITOR


Response Body

List of management user information

Field Description Type Notes
mgmt_user_infos
mgmt_user_info     0-* Elements
userId User Id String
isSystemAdmin Flag indicating whether management user is System Admin Boolean
isSystemMonitor Flag indicating whether management user is System Monitor Boolean
isSecurityAdmin Flag indicating whether management user is Security Admin Boolean
is_external_group If set to true, its a domain. Boolean
is_locked If set to true, the user is locked. Boolean
last_time_password_changed Value of last time password changed String

Examples

Request
GET https://192.168.0.0:4443/vdc/users 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"?>
<mgmt_user_infos>
    <mgmt_user_info>
        <isSystemAdmin>true</isSystemAdmin>
        <isSystemMonitor>false</isSystemMonitor>
        <isSecurityAdmin>false</isSecurityAdmin>
        <userId>root</userId>
    </mgmt_user_info>
</mgmt_user_infos>