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": "f3e1e5c7-a3eb-d184-2aa1-1e6949dcf1e1",
"provenance": "Local AAA",
"name": "engineering"
},
{
"_id": "3e5a4a6c-3049-cd77-5ab5-68664b26ea14",
"provenance": "LDAP",
"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"
]
}
}