- Site
- Session
- User
- Callback
- Workflow
- File
- Share
- VAS
- Group
- WebDAV
List groups
GET
/group/list
Auth: JWT RequiredPro
Request
Authorization
Add the parameter
Authorization
to Headers,whose value is to concatenate the Token after the Bearer.Example:
Authorization: Bearer ********************
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/group/list'
Responses
🟢200Success
application/json
Body
data
array [object {2}]  | nullÂ
optional
id
stringÂ
required
Example:
1AI8
name
stringÂ
required
Example:
Admin
code
integerÂ
required
0
- Success.Default:
0
Example:
0
msg
stringÂ
optional
error
string  | nullÂ
optional
correlation_id
string <uuid> | nullÂ
optional
Example:
b4351ecc-ee1a-4455-bc94-2c3dbcc58538
Example
{
"code": 0,
"data": [
{
"id": "z4u4",
"name": "Admin"
},
{
"id": "1AI8",
"name": "User"
}
],
"msg": ""
}
Modified at 2025-06-27 03:18:20