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": [
"bf1af6a1-19c0-53b1-591d-56251aa91683",
"503baff3-e701-6647-2556-9b7fc0f8aa4c",
"1862c9d1-fc3f-6046-523d-24e269e3647e"
]
}
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
[
"8b1a48fa-1b35-e901-57f7-95a41fd63c90",
"0af49b5c-774d-6293-afec-135ced06e9e7",
"10e2b974-34c2-9c05-6dda-0d6ed5af4fe9",
"7ee43562-8847-7b81-3f57-81e120be180b",
"1a2705da-2605-2041-6c1a-6de8d19cab08"
]
Copied to Clipboard
{
"type": "array",
"items": {
"$ref": "IDType"
}
}