Summary
Get user groups
Description
Get a list of user groups.
Route
GET /golden_config/getGroups
Roles
admin
engineering
support
Parameters
DetailsExampleSchema
Name |
Type |
Required |
Description |
This method has no parameters |
Copied to Clipboard
{
"type": "object",
"properties": {},
"required": [],
"additionalProperties": false
}
Return
DetailsExampleSchema
Name |
Type |
Description |
group_list |
array |
List of user groups in Pronghorn. |
Copied to Clipboard
[
{
"_id": "36895f36-62fa-5e4a-ceee-1cb4537b3ca3",
"provenance": "Active Directory",
"name": "engineering"
},
{
"_id": "9416ce57-d94a-6246-7224-5e5028487283",
"provenance": "Local AAA",
"name": "sales"
},
{
"_id": "1b1d485c-524b-b3c0-2a59-8271bbd6a289",
"provenance": "Active Directory",
"name": "admin"
},
{
"_id": "a9a94722-b8d5-c914-4b5e-9d94e98147bd",
"provenance": "Local AAA",
"name": "sales"
},
{
"_id": "30df9b65-2719-9bbe-1dc5-3b1d434002dc",
"provenance": "Local AAA",
"name": "engineering"
}
]
Copied to Clipboard
{
"type": "array",
"items": {
"type": "object",
"properties": {
"_id": {
"$ref": "IDType"
},
"provenance": {
"type": "string",
"examples": [
"Local AAA",
"LDAP",
"Active Directory"
]
},
"name": {
"type": "string",
"examples": [
"admin",
"engineering",
"sales"
]
}
},
"required": [
"_id",
"provenance",
"name"
]
}
}