URL: /api/platform/plugindata/querySignRecordList

Type: POST

Author: Shang Pan

Content-Type: application/json; charset=utf-8

Description: 签到玩法数据-签到数据列表分页条件查询

Body-parameters:

ParameterTypeRequiredDescription

opfid

string

true

开放平台ID

nonce

string

true

6位随机字串不能为空

timestamp

string

true

签名时间戳

signature

string

true

签名

appId

string

true

作品id

componentId

string

true

插件id

startTime

string

true

开始时间 yyyy-MM-dd HH:mm:ss

endTime

string

true

结束时间 yyyy-MM-dd HH:mm:ss

nickName

string

false

用户昵称

pageNo

int32

true

页码

pageSize

int32

true

页大小

Response-fields:

FieldTypeDescription

code

string

状态码

errorCode

string

错误状态码

msg

string

状态描述

data

object

数据

└─list

array

结果列表

     └─audId

int64

客户档案Id

     └─openId

string

微信下应用的唯一标识

     └─unionId

string

微信的同一平台下的用户唯一标识

     └─avatar

string

用户图像

     └─createTime

string

创建时间

     └─nickName

string

用户昵称

└─pageNo

int32

页码

└─pageSize

int32

每页的大小

└─totalCount

int32

总行数

└─beginIndex

int32

No comments found.

└─orderCondition

string

No comments found.

└─pageCount

int32

No comments found.

└─sort

string

排序字段

└─order

string

排序顺序

└─mulFieldOrder

string

No comments found.

Request-body-example:

{
    "opfid": "71",
    "nonce": "ep9wov",
    "timestamp": "2021-08-19 14:47:59",
    "signature": "iaffnf",
    "appId": "71",
    "componentId": "71",
    "startTime": "2021-08-19 14:47:59",
    "endTime": "2021-08-19 14:47:59",
    "nickName": "robby.gutkowski",
    "pageNo": 730,
    "pageSize": 10
}


Response-example:

{
  "code": "21339",
  "errorCode": "21339",
  "msg": "unft7h",
  "data": {
    "list": [
      {
        "audId": 326,
        "openId": "71",
        "unionId": "71",
        "avatar": "dzg6zs",
        "createTime": "2021-08-19 14:48:01",
        "nickName": "robby.gutkowski"
      }
    ],
    "pageNo": 391,
    "pageSize": 10,
    "totalCount": 569,
    "beginIndex": 726,
    "orderCondition": "27r9e0",
    "pageCount": 486,
    "sort": "rdryap",
    "order": "4gpzhn",
    "mulFieldOrder": "slj3gi"
  }
}


Curl-example:

curl -X POST -H 'Content-Type: application/json; charset=utf-8' -i http://127.0.0.1:36190/api/platform/plugindata/querySignRecordList --data '{
  "opfid": "71",
  "nonce": "ep9wov",
  "timestamp": "2021-08-19 14:47:59",
  "signature": "iaffnf",
  "appId": "71",
  "componentId": "71",
  "startTime": "2021-08-19 14:47:59",
  "endTime": "2021-08-19 14:47:59",
  "nickName": "robby.gutkowski",
  "pageNo": 730,
  "pageSize": 10
}'








  • 无标签