应用权限:插件自建应用插件使用

接口路径: /api/platform/plugindata/queryVotePlayerRecordList

Type: POST

Author: Shang Pan

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

Description: 投票玩法数据-投票记录数据列表分页条件查询

Type: POST

Author: Shang Pan

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

Description: 投票玩法数据-投票记录数据列表分页条件查询

Request-headers:

HeaderTypeRequiredDescription

X-Token

string

true

token

Body-parameters:

ParameterTypeRequiredDescription

appId

string

true

作品ID

componentId

string

true

玩法组件ID

uid

string

true

第三方用户id

companyIdstringfalse

第三方企业id

nickName

string

false

微信昵称(投票用户)

startTime

string

true

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

endTime

string

true

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

pageNo

int32

true

第几页,从1开始

pageSize

int32

true

每页数据条数

Response-fields:

FieldTypeDescription

code

string

状态码

errorCode

string

错误状态码

msg

string

状态描述

data

object

数据

└─list

array

结果列表

     └─idlong投票记录id

     └─orgId

string

兔展定义的企业ID

     └─appId

string

作品ID

     └─componentId

string

玩法唯一标识ID

     └─startTime

string

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

     └─endTime

string

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

     └─pageNo

int32

第几页,从1开始

     └─pageSize

int32

每页数据条数

     └─nickName

string

微信昵称(投票用户)

     └─headImg

string

微信头像

     └─openid

string

投票用户openid

     └─playerName

string

选手名称

     └─playerNum

string

选手编号

     └─voteTime

string

投票时间

     └─audid

int64

客户id

└─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.

请求示例

Curl-example:

curl -X POST -k -H 'Content-Type: application/json; charset=utf-8' -H 'X-Token:r9i6T6VXdAV0vjiMBxODFRddRVY' -i https://integrate.rabbitpre.com/api/open/api/platform/plugindata/queryVotePlayerRecordList --data '{ "appId": "192", "componentId": "192", "uid": "test12", "nickName": "merle.batz", "startTime": "2022-03-30 20:32:00", "endTime": "2022-03-30", "pageNo": 625, "pageSize": 10 }' 


入参示例:

{
    "appId": "71",
    "uid": "190",
    "companyId": "190",
    "componentId": "71",
    "nickName": "robby.gutkowski",
    "startTime": "2021-08-19 14:48:01",
    "endTime": "2021-08-19 14:48:01",
    "pageNo": 992,
    "pageSize": 10
}


返回示列:


{
  "code": "200",
  "errorCode": "SUCCESS",
  "msg": "ok",
  "data": {
    "list": [
      {
		"id":12312313,
        "orgId": "71",
        "appId": "71",
        "componentId": "71",
        "startTime": "2021-08-19 14:48:01",
        "endTime": "2021-08-19 14:48:01",
        "pageNo": 406,
        "pageSize": 10,
        "nickName": "robby.gutkowski",
        "headImg": "yvmcg5",
        "openid": "71",
        "playerName": "思聪.崔",
        "playerNum": "n3zxsu",
        "voteTime": "2021-08-19 14:48:01",
        "audid": 544
      }
    ],
    "pageNo": 1,
    "pageSize": 10,
    "totalCount": 1,
    "pageCount": 1,
    "order": "ASC"
  
  }
}