调用ListLiveMessageGroupByPage查询互动消息群组列表,并支持翻页功能
使用说明
调用本接口前,您必须已经调用CreateLiveMessageGroup创建互动消息群组。
QPS限制
本接口的单用户QPS限制为50次/秒。超过限制,API调用会被限流,这可能会影响您的业务,请合理调用。更多信息,请参见QPS限制。
调试
您可以在OpenAPI Explorer中直接运行该接口,免去您计算签名的困扰。运行成功后,OpenAPI Explorer可以自动生成SDK代码示例。
请求参数
名称 |
类型 |
是否必选 |
示例值 |
描述 |
Action | String | 是 | ListLiveMessageGroupByPage | 系统规定参数。取值:ListLiveMessageGroupByPage。 |
AppId | String | 是 | demo | 应用ID。 |
SortType | Integer | 是 | 1 | 排序方式,按群组创建时间先后进行排序。取值:
|
PageSize | Integer | 否 | 20 | 分页大小,取值范围为:[1,50]。 默认值为20。 |
PageNumber | Integer | 否 | 1 | 取第几页,取值范围为:[1,10000]。 默认值为1。 |
GroupStatus | Integer | 否 | 1 | 群组状态,默认值为0。取值:
|
DataCenter | String | 否 | cn-shanghai | 数据中心,需要与CreateLiveMessageApp中的数据中心一致,当前支持上海(取值为cn-shanghai)、新加坡(取值为ap-southeast-1)。 |
返回数据
名称 |
类型 |
示例值 |
描述 |
RequestId | String | B5D95365-5A46-1A6A-BBF5-C7B6BDED**** | 请求ID。 |
TotalCount | Integer | 50 | 总条数。 |
PageNumber | Integer | 1 | 返回数据的当前页码。 |
PageSize | Integer | 20 | 分页大小。 |
GroupList | Array of Groups | 群组列表。 |
|
GroupId | String | cU9MeBqf**** | 群组ID。 |
CreatorId | String | user_77 | 创建者ID。 |
AdminList | Array of String | uid1 | 管理员用户ID。 |
Createtime | Long | 1698299727 | 创建时间,用UNIX时间戳表示,单位:秒。 |
GroupName | String | mytestgroup | 群组名。 |
GroupInfo | String | testgroupinfo | 群组扩展信息。 |
Delete | Boolean | true | 是否已删除。 |
示例
请求示例
http(s)://live.aliyuncs.com?Action=ListLiveMessageGroupByPage
&AppId=demo
&SortType=1
&PageSize=20
&PageNumber=1
&GroupStatus=1
&DataCenter=cn-shanghai
&公共请求参数
正常返回示例
XML
格式
HTTP/1.1 200 OK
Content-Type:application/xml
<ListLiveMessageGroupByPageResponse>
<RequestId>B5D95365-5A46-1A6A-BBF5-C7B6BDED****</RequestId>
<TotalCount>50</TotalCount>
<PageNumber>1</PageNumber>
<PageSize>20</PageSize>
<GroupList>
<GroupId>cU9MeBqf****</GroupId>
<CreatorId>user_77</CreatorId>
<AdminList>uid1</AdminList>
<Createtime>1698299727</Createtime>
<GroupName>mytestgroup</GroupName>
<GroupInfo>testgroupinfo</GroupInfo>
<Delete>true</Delete>
</GroupList>
</ListLiveMessageGroupByPageResponse>
JSON
格式
HTTP/1.1 200 OK
Content-Type:application/json
{
"RequestId" : "B5D95365-5A46-1A6A-BBF5-C7B6BDED****",
"TotalCount" : 50,
"PageNumber" : 1,
"PageSize" : 20,
"GroupList" : [ {
"GroupId" : "cU9MeBqf****",
"CreatorId" : "user_77",
"AdminList" : [ "uid1" ],
"Createtime" : 1698299727,
"GroupName" : "mytestgroup",
"GroupInfo" : "testgroupinfo",
"Delete" : true
} ]
}
错误码
HttpCode |
错误码 |
错误信息 |
描述 |
400 | InputInvalid | %s. | 输入参数不合法 |
403 | NoAuth | %s. | 没有权限 |
404 | ResourceNotExist | %s. | 请求资源不存在,请检查后重新尝试 |
500 | ServerError | %s. | 未知错误,请稍后重试或提交工单咨询。 |
访问错误中心查看更多错误码。
文档内容是否对您有帮助?