EMC ECS REST API

Search (SHIFT+S)




List Local Management Users

GET /vdc/users

Gets all configured local management users.


Required Roles

Requires one of the following roles:

  • 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
is_external_group If set to true, its a domain. Boolean

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>
        <userId>root</userId>
    </mgmt_user_info>
</mgmt_user_infos>