- OpenAPI基本介绍
- 错误码参考 表
- 访问频率和并发限制
- 消息订阅
- 获取访问凭据
- 员工管理
- 自定义订单管理
- 客户管理
- 客户积分管理
- 客户标签管理
- 客户画像管理
- 标签库管理
- 群聊管理
- 工单管理
- 销售过程管理
- 聊天记录管理
- 拉新排行榜
- 群裂变
- 群打卡
- 企微任务宝
- 拉新排行榜
- 自定义表单
- 客户转化
- 员工个人群发记录管理
- 渠道码管理
- 素材库管理
- 互动雷达管理
- 自定义侧边栏身份校验
- 有赞订单管理
- 小鹅通订单管理
- 项目管理
- 门店信息
- 人群包
- 客户群发
- 企微朋友圈
- 个人SOP
- 部门管理
- 群标签管理
- 话术库
- 企微数据专区
获取群打卡任务详情
GET
/open-api/check_in_act/mission/detail
错误码 | 说明 |
---|---|
21608 | corp_id 错误,找不到对应的企业 |
21609 | act_id 不合法 |
21610 | phase 不合法 |
21611 | order 不合法 |
21612 | limit 不合法 |
21613 | offset 不合法 |
调用此接口需购买营销席位。 |
请求参数
Query 参数
act_id
string
活动ID
示例值:
355
phase
string
可选
示例值:
joined
order
string
可选
示例值:
asc
limit
string
可选
示例值:
10
offset
string
可选
示例值:
0
access_token
string
调用接口凭证
默认值:
{{access_token}}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://open.weibanzhushou.com/open-api/check_in_act/mission/detail?act_id=355&phase=joined&order=asc&limit=10&offset=0&access_token='
返回响应
🟢200成功
application/json
Body
errcode
integer
必需
errmsg
string
必需
mission_detail
array [object {9}]
必需
id
integer
活动参与id
nickname
string
客户昵称
last_check_in_time
integer
最后打卡时间
ip_city
string
城市
total_days
integer
总打卡天数
succession_days
integer
连续打卡天数
phase
string
打卡阶段
unionid
string
客户unionid,密文企业返回openid
record_list
array [object {2}]
可选
total
integer
必需
示例
{
"errcode": 0,
"errmsg": "ok",
"mission_detail": [
{
"id": 3000094114,
"nickname": "子川",
"last_check_in_time": 1744356026,
"ip_city": "武汉市",
"total_days": 2,
"succession_days": 2,
"phase": "finished",
"unionid": "omefmt36BJgF0FiVh_2pbwY42U98",
"record_list": [
{
"content": "写了文本",
"created_at": 1744253622
},
{
"content": "第二天",
"created_at": 1744356026
}
]
},
{
"id": 3000094115,
"nickname": "白云苍狗。",
"last_check_in_time": 0,
"ip_city": "武汉市",
"total_days": 0,
"succession_days": 0,
"phase": "first_entry",
"unionid": "omefmt_rU42adY6YKAwyr2WddyJk",
"record_list": []
}
],
"total": 2
}
🟢200正常返回