URL: /api/platform/plugindata/queryTeamFollowerRecordList

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

nickName

string

false

用户昵称

pageNo

int32

false

页码

pageSize

int32

false

页大小

Request-body:

{
  "opfid": "16",
  "nonce": "b1r3i9",
  "timestamp": "2022-05-19 14:57:30",
  "signature": "kelnvi",
  "appId": "16",
  "componentId": "16",
  "uid": "0d1817ea-815b-49c3-8e65-fc48f233f22c",
"companyId": "bc299ab7-4b46-4929-9bb3-7e9abd83c18c",
  "startTime": "2022-05-19 14:57:30",
  "endTime": "2022-05-19 14:57:30",
  "nickName": "chung.keebler",
  "pageNo": 502,
  "pageSize": 10
}

Response-fields:

Field

Type

Description

Since

code

string

状态码

-

errorCode

string

错误状态码

-

msg

string

状态描述

-

data

object

数据

-

└─list

array


-

     └─openids

array

队员身份识别字段

-

        └─ openid

string

openid


         └─ unionid

string

unionid


         └─ identityType

string

身份类型


         └─ identityId

string

身份id


         └─ appid

string

微信公众号id


         └─ jcappId

string

自建应用appid


         └─ fromTo

string

来源


         └─ platform

string

来源平台


     └─leaderOpenids

array

队长身份识别字段

-

        └─ openid

string

openid


         └─ unionid

string

unionid


         └─ identityType

string

身份类型


         └─ identityId

string

身份id


         └─ appid

string

微信公众号id


         └─ jcappId

string

自建应用appid


         └─ fromTo

string

来源


         └─ platform

string

来源平台


     └─id

int32

记录id

-

     └─audid

int64

队员客户档案id

-

     └─niceName

string

队员昵称

-

     └─avatar

string

队员头像

-

     └─createTime

string

队员入队时间

-

     └─leaderAudid

int64

队长客户档案id

-

     └─teamNum

int32

队伍规模

-

     └─leaderNickName

string

队长昵称

-

     └─openid

string

队员openid

-

     └─leaderOpenid

string

队长openid

-

└─pageNo

int32

页码

-

└─pageSize

int32

页容

-

└─totalCount

int32

总数

-


Response-example:

{
  "code": "7904",
  "errorCode": "7904",
  "msg": "4d7ibw",
  "data": {
    "list": [
    {
        "openids": [
        {
                "openid": "111",
        "unionid": "111",
      "identityType": "111",
    "identityId": "11111",
    "appid": "111",
    "jcappId": "111",
          "fromTo": "111",
    "platform": "111"

          }
        ],
        "leaderOpenids": [
        {
                 "openid": "111",
        "unionid": "111",
      "identityType": "111",
    "identityId": "11111",
    "appid": "111",
    "jcappId": "111",
          "fromTo": "111",
    "platform": "111"

          }
        ],
        "id": 402,
        "audid": 904,
        "niceName": "峻熙.江",
        "avatar": "8slnyj",
        "createTime": "2022-05-19 14:33:32",
        "leaderAudid": 476,
        "teamNum": 200,
        "leaderNickName": "sherlyn.schmitt",
        "openid": "30",
        "leaderOpenid": "30"
      }
    ],
    "pageNo": 642,
    "pageSize": 10,
  "totalCount": 787
    }
  }
}

Curl-example:

curl -X POST -H 'Content-Type: application/json; charset=utf-8' -i /api/platform/plugindata/queryTeamFollowerRecordList --data '{
  "opfid": "30",
  "nonce": "qv8jj0",
  "timestamp": "2022-05-19 14:33:20",
  "signature": "j3dpfv",
  "appId": "30",
  "componentId": "30",
  "uid": "bc299ab7-4b46-4929-9bb3-7e9abd83c18c",
  "companyId": "bc299ab7-4b46-4929-9bb3-7e9abd83c18c",
  "startTime": "2022-05-19 14:33:20",
  "endTime": "2022-05-19 14:33:20",
  "nickName": "sherlyn.schmitt",
  "pageNo": 89,
  "pageSize": 10
}'