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": "4a3e9a1a-4563-3e17-b52d-f07d18f4c390",
"provenance": "Active Directory",
"name": "engineering"
},
{
"_id": "b126d521-695b-8093-4aa2-5b3f8d6b38d4",
"provenance": "Local AAA",
"name": "engineering"
},
{
"_id": "4dce073a-e1dc-b708-44b4-e6213e940f2d",
"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"
]
}
}