版本比较

标识

  • 该行被添加。
  • 该行被删除。
  • 格式已经改变。

...

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

来源平台


     └─idstring记录ID(36位uuid)

     └─audienceUserId

string

No comments found.

玩家用户ID

-

     └─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": [
        {

...

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"
}'