获取群组列表
所属服务
sam
接口方法
GET
请求url
/sam?Action=ListGroups&Version=2018-03-22
url 参数
参数名称 | 说明 | 参数类型 | 是否必填 | 备注 |
---|---|---|---|---|
Action | ListGroups | string | 是 | |
Version | 2018-03-22 | string | 是 |
返回参数
参数名称 | 说明 | 参数类型 | 是否必填 | 备注 |
---|---|---|---|---|
Groups | 群组列表 | array | 否 | 详细信息见下表 |
Code | Code | string | 是 | |
Message | Message | string | 是 |
Groups
参数名称 | 说明 | 参数类型 | 是否必填 | 备注 |
---|---|---|---|---|
GroupName | 群组名称 | string | 否 | |
Description | 群组描述 | string | 否 | |
CreateDate | 创建时间 | string | 否 | |
JoinTime | 加入时间 | string | 否 |
状态码
错误码(Code) | 错误提示(Message) | http status code | 说明 |
---|---|---|---|
ProductNotActive | 400 | null |
请求示例
https://open.cn-east-1.163yun.com/sam?Action=ListGroups&Version=2018-03-22
返回示例
{
"Message": "调用成功",
"RequestId": "e13ce1b6-f482-4735-a253-82d0ab1a190a",
"Groups": [{
"GroupName": "grouptest2",
"Description": "test",
"CreateDate": "2020-01-17T08:16:01Z"
}, {
"GroupName": "grouptest",
"Description": "test",
"CreateDate": "2020-01-17T07:54:48Z"
}, {
"GroupName": "newgrouptest",
"Description": "new_group_test",
"CreateDate": "2020-01-17T07:05:44Z"
}],
"Code": "Success"
}