Get Users of Tenant (v2.0)
GET/sdwan/v2.0/api/directoryusers
List all the users of a tenant.
Responses
- 200
Successful Operation
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
count int32
The actual count.
id string
The ID.
items DirectoryUser[]
description
The description of the user. Max size = 256.
id string
The user ID.
name stringrequired
The user's name.
stale boolean
Stale
tags string[]
A information field that can be added to identify the user. Maximum 10 unique tags of length 1024 each are allowed.
user_group_ids string[]
The user group IDs to which the user belongs.
{
"count": 0,
"id": "string",
"items": [
{
"id": "string",
"name": "string",
"stale": true,
"tags": [
"string"
],
"user_group_ids": [
"string"
]
}
]
}
Loading...