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": "c01b9783-7e50-7d0c-03b8-00f1e4bf20d2",
"provenance": "LDAP",
"name": "admin"
},
{
"_id": "452ac1b9-ddb8-2a77-35d1-430001e557b0",
"provenance": "Active Directory",
"name": "engineering"
},
{
"_id": "9d48fcc5-37c3-8097-59f7-94ec3807a891",
"provenance": "LDAP",
"name": "sales"
},
{
"_id": "f39a89ca-0ca5-ad18-116a-011cc9ad4886",
"provenance": "Local AAA",
"name": "sales"
},
{
"_id": "9504ba6e-2cf3-8fc7-4d46-942882a69701",
"provenance": "Active Directory",
"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"
]
}
}