ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、视频、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
# 获取打卡参与用户 |拥有此API的权限集| |:----- | |打卡管理-查询打卡信息 | **请求方式及url** - 请求方式:`POST` - 请求头:`Content-Type:application/json` - 接口地址:`https://api.xiaoe-tech.com/xe.elock.actor/1.0.0` - 频率限制: `10秒3000次` {% api method="POST", data= { "access_token": "xe_xxx", "activity_id": "ac_617b5f2682c16_BFKgeMSe", "page_index": 1, "page_size": 10 }, url="https://api-doc.xiaoe-tech.com/_agent/forward?url=https://api.xiaoe-tech.com/xe.elock.actor/1.0.0" %} {% endapi %} **请求参数** |参数名|必选|类型|说明| |:---- |:---|:----- |----- | |access_token |是 |string |[专属token](./../get_access_token.md) | |activity_id|是 |string|打卡id | |page_index|是 |int |页码 | |page_size|是 |int|每页条数 | **请求示例** ``` { "access_token": "xe_xxx", "activity_id": "ac_617b5f2682c16_BFKgeMSe", "page_index": 1, "page_size": 10 } ``` **返回参数** |参数名|类型|说明| |:----- |:-----|----- | |code|int |返回码 | |msg |string | 返回信息 | |data |object | 返回数据 | |data.count|int | 参与用户总数 | |data.list|array | 参与用户列表 | 参与用户列表 `data.list` |参数名|类型|说明| |:----- |:-----|----- | |user_id |string |用户id | |activity_id |string | 参与打卡id | |clock_days |string | 打卡天数 | |zan_count |string | 被点赞数 | |comment_count|string |被评论数 | |topic_count|string | 精选日记数 | |review_count|string | 被点评数 | |wx_nickname|string | 微信昵称 | |wx_avatar|string | 微信头像 | |clock_nickname |string | 打卡昵称 | |phone|string | 电话 | |wx_city |string | 城市 | |wx_account |string | 账号 | |created_at |string | 首次提交打卡时间戳 | **返回示例** ``` { "code": 0, "msg": "Success", "data": { "count": 1, "list": [ { "activity_id": "ac_617b5f2682c16_BFKgeMSe", "clock_days": 1, "clock_nickname": "", "comment_count": 0, "created_at": "", "phone": null, "review_count": 1, "topic_count": 0, "user_id": "u_617b5f496a0cc_wtq6EmE0Tw", "wx_account": "", "wx_avatar": "http://wechatavator-1252524126.file.myqcloud.com/appnxgrcxgv6419/image/compress/u_617b5f496a0cc_wtq6EmE0Tw.png", "wx_city": null, "wx_nickname": "Miracle", "zan_count": 1 } ] } } ```