# shopping-guide.getGuideGroupList
本接口应在服务器端调用,详细说明参见服务端API。
获取服务号下所有顾问分组的列表
# 请求地址
POST https://api.weixin.qq.com/cgi-bin/guide/getguidegrouplist?access_token=ACCESS_TOKEN
# 请求参数
属性 | 类型 | 默认值 | 必填 | 说明 |
---|---|---|---|---|
access_token | string | 是 | 接口调用凭证 |
# 返回值
# Object
属性 | 类型 | 说明 |
---|---|---|
group_list | Array.<Object> | 顾问分组列表 |
errcode | number | 错误码 |
errmsg | number | 错误信息 |
group_list 的结构
属性 | 类型 | 说明 |
---|---|---|
id | uint64 | 顾问分组id |
name | string | 顾问分组名称 |
create_time | uint32 | 创建时间戳 |
update_time | uint32 | 更新时间戳 |
errcode 的合法值
值 | 说明 | 最低版本 |
---|---|---|
0 | 成功 | |
-1 | 系统失败 |
# 请求数据示例
{
}
# 返回数据示例
{
"errcode":0,
"errmsg":"ok",
"group_list":[
{"id":3223,"name":"xxxxx","create_time":232,"update_time":2323},
{"id":1312,"name":"ewrwe","create_time":3243,"update_time":2323},
{"id":343,"name":"asdf","create_time":4554,"update_time":3434}
]
}