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": "81e934a8-e7ec-693b-6bac-7ae2cc4af184",
"provenance": "LDAP",
"name": "sales"
},
{
"_id": "d9e7e041-76b5-f9c1-6b9c-ee314c9ea0aa",
"provenance": "Active Directory",
"name": "engineering"
},
{
"_id": "dfdffd72-2097-2a05-957a-4f5ae79d80fb",
"provenance": "Local AAA",
"name": "engineering"
},
{
"_id": "c4d76f3b-5942-a2f6-8ea0-54b12cc59e9c",
"provenance": "LDAP",
"name": "sales"
}
]
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"
]
}
}