Retrieve the list of cloud phone groups, supporting pagination with 200 entries per page. The page size cannot be changed.
POST
/api/v1/cloudPhone/groupList
Parameter | Type | Required | Description |
---|---|---|---|
page | int | No | Page number to request. Defaults to the first page if not provided. |
{
"page": 1
}
{
"code": 200,
"data": {
"list": [
{
"id": "9JKzb", // Group ID
"name": "xx", // Name
"sort": 1000,
"remark": ""
}
],
"page": 1,
"pagesize": 200,
"total": 1,
"total_page": 1
},
"message": "Success"
}