For the complete documentation index, see llms.txt. This page is also available as Markdown.

List groups with their details

get
Authorizations
defguard_sessionstringRequired
Responses
200

All groups with their members.

application/json
idinteger · int64Required
is_adminbooleanRequired
membersstring[]Required
namestringRequired
vpn_locationsstring[]Required
get/api/v1/group-info
GET /api/v1/group-info HTTP/1.1
Accept: */*
[
  {
    "id": 1,
    "is_admin": false,
    "members": [
      "user"
    ],
    "name": "name",
    "vpn_locations": [
      "location"
    ]
  }
]

Last updated

Was this helpful?