Get Element User (v2.0)
GET/sdwan/v2.0/api/elementusers
List all the element users.
Responses
- 200
Successful Operation
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
count int32
The actual count.
id string
The ID.
items ElementUser[]
id string
The ID.
is_tenant_level booleanrequired
The tenant level is flagged.
login_id stringrequired
The element user log in ID. Login Id length should be between 4 and 16. = ^[a-z][-a-z0-9]*$
role stringrequired
Possible values: [SUPER
, READONLY
, MONITOR
, EVAL
]
The user role.
username string
The username. Max length = 255.
{
"count": 0,
"id": "string",
"items": [
{
"id": "string",
"is_tenant_level": true,
"login_id": "string",
"role": "SUPER",
"username": "string"
}
]
}
Loading...