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": [
"da330f40-9b45-18da-f9aa-efd08e815a63",
"8eaf47be-4ce6-434c-ee9b-a4d6bda9a2d2",
"1778263e-5f98-0773-44c8-d8c3ab99b4b8",
"8aa5950f-9e0a-068d-e7ed-7c2594dcf7cf"
]
}
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
[
"99b54441-096e-e2ee-47d6-4d7906f0355d",
"213c75c0-f27f-13ae-32b7-9fd1c7601e54",
"349d9329-a092-55c4-7088-50e16a3a81e0",
"8d8e6dbe-324e-d87f-88a6-b50f8617dfb6"
]
Copied to Clipboard
{
"type": "array",
"items": {
"$ref": "IDType"
}
}