Summary
Get users in groups
Description
Get a list of users in specific groups.
Route
POST /golden_config/getUsers
Roles
admin
engineering
support
Parameters
DetailsExampleSchema
| Name |
Type |
Required |
Description |
| groups |
array |
yes |
Group IDs. |
Copied to Clipboard
{
"groups": [
"21d9de72-af27-44ed-555f-8ddcb84ae1d3",
"0d82bf63-9c6f-0538-c2e0-d9344b73f11c",
"0fe54d03-6ba2-43bb-2c54-cfdcec55ffce",
"92fc44cf-b629-4059-36eb-d9577f995bae",
"a025a5fd-102f-1625-555a-07001f7051fb"
]
}
Copied to Clipboard
{
"type": "object",
"properties": {
"groups": {
"type": "array",
"items": {
"$ref": "IDType"
}
}
},
"required": [
"groups"
],
"additionalProperties": false
}
Return
DetailsExampleSchema
| Name |
Type |
Description |
| group_list |
array |
List of users in those user groups |
Copied to Clipboard
[
"41f7532a-c1f0-3bd1-8645-1bc12e91ccbe",
"631887ea-160a-b682-1b64-6c8894daa522"
]
Copied to Clipboard
{
"type": "array",
"items": {
"$ref": "IDType"
}
}