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": [
"6ad3ad80-b572-b190-2550-4d4224080dee",
"ae008b73-9cad-999b-8524-78668819e693",
"a8f42f4c-933b-f101-08bc-fcbd76af2712",
"74849d41-f3cd-0b7f-2697-4bbb0ae18802"
]
}
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
[
"a826663f-b1cc-1ff6-b960-907cdb6abcf1",
"0a998fa6-eec9-5a5a-bbd8-18202996b98e",
"2e7f6bcd-39dd-81a1-65e6-e292c04e88ab",
"6586da9c-d857-4e2a-c64f-84045e14a020"
]
Copied to Clipboard
{
"type": "array",
"items": {
"$ref": "IDType"
}
}