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": "dfa75d2e-482f-e29f-373d-5008a3d74288",
"provenance": "Active Directory",
"name": "sales"
},
{
"_id": "87c5fce8-748d-b7d2-24ce-2039ee8f48ed",
"provenance": "Local AAA",
"name": "engineering"
},
{
"_id": "03721e56-1c08-9f56-858f-c1388185a961",
"provenance": "Active Directory",
"name": "admin"
},
{
"_id": "8fe278e6-d5cd-3806-a79b-2c233237df0f",
"provenance": "Active Directory",
"name": "admin"
},
{
"_id": "99b5998f-50e3-3a93-93fc-af2d547e3db1",
"provenance": "Local AAA",
"name": "admin"
}
]
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"
]
}
}