URL: /api/platform/plugindata/queryTaskRecordDataList
Type: POST
Author: Shang Pan
Content-Type: application/json; charset=utf-8
Description: 任务玩法数据-任务数据列表分页条件查询
Body-parameters:
Parameter | Type | Required | Description |
---|---|---|---|
opfid | string | true | 开放平台ID |
nonce | string | true | 6位随机字串不能为空 |
timestamp | string | true | 签名时间戳 |
signature | string | true | 签名 |
appId | string | true | 作品id |
componentId | string | true | 插件id |
uid | string | true | 第三方用户id |
companyId | string | true | 第三方公司id |
startTime | string | true | 开始时间 |
endTime | string | true | 结束时间 yyyy-MM-dd HH:mm:ss |
pageNo | int32 | false | 页码 |
pageSize | int32 | false | 页大小 |
nickName | string | false | 用户昵称 |
Request-body:
{
"opfid": "112",
"nonce": "9wjndk",
"timestamp": "2022-05-19 17:14:27",
"signature": "muujvm",
"appId": "112",
"componentId": "112",
"uid": "2b7f8720-fe3a-4cf3-97c6-b5893d00ef9a",
"companyId": "bc299ab7-4b46-4929-9bb3-7e9abd83c18c",
"startTime": "2022-05-19 17:14:27",
"endTime": "2022-05-19 17:14:27",
"pageNo": 977,
"pageSize": 10,
"nickName": "leroy.farrell"
}
Response-fields:
Field | Type | Description | Since |
---|---|---|---|
code | string | 状态码 | - |
errorCode | string | 错误状态码 | - |
msg | string | 状态描述 | - |
data | object | 数据 | - |
└─list | array | No comments found. | - |
└─openids | array | No comments found. | - |
└─ openid | string | openid | |
└─ unionid | string | unionid | |
└─ identityType | string | 身份类型 | |
└─ identityId | string | 身份id | |
└─ appid | string | 微信公众号id | |
└─ jcappId | string | 自建应用appid | |
└─ fromTo | string | 来源 | |
└─ platform | string | 来源平台 | |
└─audienceUserId | string | No comments found. | - |
└─avatar | string | No comments found. | - |
└─nickName | string | No comments found. | - |
└─taskName | string | No comments found. | - |
└─taskType | int32 | No comments found. | - |
└─taskEvent | string | No comments found. | - |
└─resetTaskInterval | string | No comments found. | - |
└─taskResetInfo | string | No comments found. | - |
└─intervalHour | int32 | No comments found. | - |
└─finishTime | string | No comments found. | - |
└─pageNo | int32 | No comments found. | - |
└─pageSize | int32 | No comments found. | - |
└─totalCount | int32 | No comments found. | - |
Response-example:
{
"code": "90209",
"errorCode": "90209",
"msg": "4rz9wa",
"data": {
"list": [
{
"openids": [
{
"openid": "111",
"unionid": "111",
"identityType": "111",
"identityId": "11111",
"appid": "111",
"jcappId": "111",
"fromTo": "111",
"platform": "111"
}
],
"audienceUserId": "112",
"avatar": "a3uvy1",
"nickName": "leroy.farrell",
"taskName": "伟祺.武",
"taskType": 721,
"taskEvent": "g6snfi",
"resetTaskInterval": "g252oq",
"taskResetInfo": "2e1q84",
"intervalHour": 535,
"finishTime": "2022-05-19 17:14:31"
}
],
"pageNo": 307,
"pageSize": 10,
"totalCount": 207
}
}
Curl-example:
curl -X POST -H 'Content-Type: application/json; charset=utf-8' -i /api/platform/plugindata/queryTaskRecordDataList --data '{
"opfid": "112",
"nonce": "9wjndk",
"timestamp": "2022-05-19 17:14:27",
"signature": "muujvm",
"appId": "112",
"componentId": "112",
"uid": "2b7f8720-fe3a-4cf3-97c6-b5893d00ef9a",
"companyId": "bc299ab7-4b46-4929-9bb3-7e9abd83c18c",
"startTime": "2022-05-19 17:14:27",
"endTime": "2022-05-19 17:14:27",
"pageNo": 977,
"pageSize": 10,
"nickName": "leroy.farrell"
}'