Query accounts under the group
| Parameter | Description | Required |
|---|---|---|
| action | queryAccountFromGroup | True |
| id | Group id | True |
| orderBy | Sort rules, possible values include: ascAccountName, by account name order descAccountName, by account name in reverse order If this parameter is not passed, it is defaulted to ascAccountName |
False |
| page | Paging processing, page number, starting from 0. If this parameter is not passed, it is defaulted to 0 | False |
| pagesize | Paging processing, with 1 to 50 records per page. If this parameter is not passed, it defaults to 1 | False |
response:
| Parameter | Description | Required |
|---|---|---|
| total | Total number of records | True |
| page | Paging processing, which page | True |
| pagesize | Paging processing, number of records per page | True |
| account[x] | refer to Query account information | True |
{
"err":0,
"desc":"ERR_NONE",
"dat":{
"total":1,
"page":0,
"pagesize":1,
"account":[
{
...
}
]
}
}