Summary
          Get a group from Local AAA instance.
          Description
          Get a group from Local AAA instance in IAP.
          Route
          GET /user-management/groups/:groupId
          Roles
          
            admin
          
          Parameters
          
            DetailsExampleSchema
          
          
            
              
                | Name | Type | Required | Description | 
            
            
              
    | groupId | string | yes | The unique identifier for a group. | 
            
          
          
          
            Copied to Clipboard
            
            {
  "type": "object",
  "properties": {},
  "required": [],
  "additionalProperties": false
}
           
          Return
          
            DetailsExampleSchema
          
          
            
              
                | Name | Type | Description | 
            
            
              
                | result | object | Contains the data for a single group. | 
            
          
          
            Copied to Clipboard
            
            {
  "_id": "5dd2cdab94410956f3ecbc79",
  "provenance": "Local AAA",
  "name": "Admin",
  "memberOf": [
    {
      "groupId": "5dd2cdab94410956f3ecbc79",
      "aaaManaged": true
    },
    {
      "groupId": "5dd2cdab94410956f3ecbc79",
      "aaaManaged": true
    },
    {
      "groupId": "5dd2cdab94410956f3ecbc79",
      "aaaManaged": true
    }
  ],
  "assignedRoles": [
    {
      "roleId": "1004"
    }
  ],
  "lastLogin": "2020-10-26T15:17:17.582Z",
  "inactive": false,
  "_meta": {
    "created": "2020-10-26T15:17:17.582Z",
    "updated": "2020-10-26T15:17:17.582Z",
    "migrationVersion": 1
  }
}
           
          
            Copied to Clipboard
            
            {
  "title": "result",
  "type": "object",
  "properties": {
    "_id": {
      "type": "string",
      "examples": [
        "5dd2cdab94410956f3ecbc79"
      ]
    },
    "provenance": {
      "type": "string",
      "examples": [
        "Local AAA"
      ]
    },
    "name": {
      "type": "string",
      "examples": [
        "Admin"
      ]
    },
    "memberOf": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "groupId": {
            "type": "string",
            "examples": [
              "5dd2cdab94410956f3ecbc79"
            ]
          },
          "aaaManaged": {
            "type": "boolean",
            "enum": [
              true
            ]
          }
        }
      }
    },
    "assignedRoles": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "roleId": {
            "type": "string",
            "examples": [
              "1004"
            ]
          }
        }
      }
    },
    "lastLogin": {
      "type": "string",
      "examples": [
        "2020-10-26T15:17:17.582Z"
      ]
    },
    "inactive": {
      "type": "boolean",
      "enum": [
        true,
        false
      ]
    },
    "_meta": {
      "type": "object",
      "properties": {
        "created": {
          "type": "string",
          "examples": [
            "2020-10-26T15:17:17.582Z"
          ]
        },
        "updated": {
          "type": "string",
          "examples": [
            "2020-10-26T15:17:17.582Z"
          ]
        },
        "migrationVersion": {
          "type": "integer",
          "examples": [
            1
          ]
        }
      }
    }
  }
}