获取群打卡任务详情
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参与打卡未完成 first_entry进入过活动页面但是未打卡 finished已完成)
示例值:
joined
order
string
可选
排序按照微伴系统收录活动时间升序或降序增加排序参数 order,可选值是 asc(升序) 和 desc(降序),默认值是 asc
示例值:
asc
limit
string
可选
列表返回长度。默认值为30,最大值为100
示例值:
10
offset
string
可选
表偏移。用于迭代获取所有数据,默认值为0
示例值:
0
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
errcode
integer
必需
errmsg
string
必需
mission_detail
array [object {8}]
必需
id
integer
活动参与id
nickname
string
客户昵称
last_check_in_time
integer
最后打卡时间
ip_city
string
城市
total_days
integer
总打卡天数
succession_days
integer
连续打卡天数
phase
string
打卡阶段
unionid
string
客户unionid
total
integer
必需
示例
{
"errcode": 0,
"errmsg": "ok",
"mission_detail": [
{
"id": 557,
"nickname": "桔梗",
"last_check_in_time": 1622625798,
"ip_city": "武汉市",
"total_days": 1,
"succession_days": 1,
"phase": "joined",
"unionid": "omefmt8bsGnJjU1WwtfMN2V7kbGY"
},
{
"id": 559,
"nickname": "匆",
"last_check_in_time": 0,
"ip_city": "",
"total_days": 0,
"succession_days": 0,
"phase": "first_entry",
"unionid": "omefmtzIo-DXntc8Rl7nDzQ_ha-o"
},
{
"id": 564,
"nickname": "吨吨吨",
"last_check_in_time": 0,
"ip_city": "武汉市",
"total_days": 0,
"succession_days": 0,
"phase": "first_entry",
"unionid": "omefmt90ED0yKl2G2oigKc4_1_Ww"
}
],
"total": 3
}
最后修改时间: 10 个月前