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": "ab18f8bf-d6a2-6124-8dd3-71a39d75cc4b",
"provenance": "Active Directory",
"name": "sales"
},
{
"_id": "8cec9ae7-f98f-c634-fa86-f5dc5c248864",
"provenance": "LDAP",
"name": "sales"
},
{
"_id": "1e4e0571-34c7-68c7-e322-8636e5436d54",
"provenance": "LDAP",
"name": "sales"
},
{
"_id": "507cefe9-c809-eb07-8e17-a307f6bb9975",
"provenance": "Local AAA",
"name": "admin"
},
{
"_id": "578ded52-0cde-6ccd-1fc5-153d581b4699",
"provenance": "Active Directory",
"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"
]
}
}