Skip to content

users_get

Admin Root response format

Warning

This method is implemented wrong and the response is returned in the Root response format even though the Standard response format should have been used.

Returns all the users in the device.

Params

N/A

Return

attribute description
users*
[User]
An array of all the users

User

attribute description
username*
string
The username of the user
role*
string
The name of the user's role

Example

{
  "users": [
    {
      "username": "defaultAdmin",
      "role": "admin"
    }
  ]
}