👏欢迎访问食亨开放平台,这里将提供给你优质的接口,请选择对应系统tab进入到接口文档
名称 | 必选 | 类型 | 默认值 | 描述 |
---|---|---|---|---|
appId | 是 | string | 应用唯一标识appId | |
sign | 是 | string | 参数签名 | |
version | 是 | string | 版本 | |
timestamp | 是 | integer | 时间戳 | |
paramContent | 否 | object | 参数内容(无参则无需传递改参数) | |
├ startId | 是 | integer | 起始id,查询id大于startId的数据,首次查询传 '0' | |
└ pageSize | 是 | integer | 每页条数 [大小: 1~100] |
名称 | 必选 | 类型 | 默认值 | 描述 |
---|---|---|---|---|
nextStartId | 否 | integer | 下次请求的startId, 没有数据了返回null | |
pageSize | 否 | integer | 当前页数据条数 | |
result | 否 | object[] | 当前页数据 | |
├ id | 否 | integer | 自增主键 | |
├ corpId | 否 | string | 公司ID | |
├ chatId | 否 | string | 客户群ID | |
├ chatName | 否 | string | 客户群名称 | |
├ employeeId | 否 | integer | 群主ID | |
├ chatCreateTime | 否 | string | 群创建时间 | |
├ notice | 否 | string | 群公告 | |
├ num | 否 | integer | 群人数 | |
├ status | 否 | integer | 跟进状态 | |
├ shopName | 否 | string | 门店名称 | |
├ adminUserList | 否 | string | 管理员列表 | |
└ ownerName | 否 | string | 群主名字 |
{
"code": "0",
"msg": null,
"traceId": "85c64652945145619295e03a2cb1f57f",
"result": {
"nextStartId": 133,
"pageSize": 2,
"result": [
{
"id": 132,
"corpId": "xxx",
"chatId": "xxxx",
"chatName": "xxxx",
"employeeId":1444448,
"chatCreateTime": 1648353114000,
"notice": null,
"num": 15,
"status": 0,
"shopName": "xxxxx",
"adminUserList": null,
"ownerName": null
},
{
"id": 133,
"corpId": "xxxx",
"chatId": "xxxxx",
"chatName": "123sda",
"employeeId": 48,
"chatCreateTime": 1648352949000,
"notice": null,
"num": 19,
"status": 0,
"shopName": "xxxx",
"adminUserList": null,
"ownerName": null
}
]
}
}