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": "da7b7b2b-fb39-c695-d6f5-16463d74ad81",
    "provenance": "LDAP",
    "name": "sales"
  },
  {
    "_id": "f307216a-6914-610f-19b9-41974411fb16",
    "provenance": "Active Directory",
    "name": "engineering"
  },
  {
    "_id": "90a4612e-6fe1-0afd-426c-ce958220a9c4",
    "provenance": "Active Directory",
    "name": "admin"
  },
  {
    "_id": "205294ff-ccef-79b4-fe88-c6626771047a",
    "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"
    ]
  }
}