...
Parameter | Type | Required | Description |
---|---|---|---|
appId | string | true | 作品ID |
componentId | string | true | 玩法组件ID |
ccompanyId | string | false | 第三方企业id,不传表示走主企业,传了才走第三方企业 |
uid | string | true | 第三方用户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:
Field | Type | Description | Since | |||
---|---|---|---|---|---|---|
code | string | 状态码 | - | |||
errorCode | string | 错误状态码 | - | |||
msg | string | 状态描述- | ||||
data | object | 数据 | - | |||
└─list | array | 结果列表 | - | └─id | int32 | 邀请id集合 |
└─orgId | string兔展定义的企业ID | 兔展定义的企业ID | - | |||
└─appId | string作品ID | 作品ID | - | |||
└─componentId | string | 玩法唯一标识ID | -玩法唯一标识ID | |||
└─startTime | string | 开始时间, yyyy-MM-dd HH:mm:ss | - | |||
└─endTime | string | 结束时间, yyyy-MM-dd HH:mm:ss | - | |||
└─pageNo | int32第几页,从1开始 | 第几页,从1开始 | - | |||
└─pageSize | int32 | 每页数据条数 - | ||||
└─id | int32 | 邀请id | ||||
└─nickName | string | 微信昵称 | - | |||
└─openid | string | openid | - | |||
└─headImg | string | 微信头像 - | ||||
└─sex | int32 | 性别 | - | |||
└─district | string | 地区 | - | |||
└─invitationNum | int32 | 邀请人数 | - | |||
└─income | int32 | 累计收益 | - | |||
└─qrCode | array | 企业微信联系二维码 | ||||
└─generateInviteCode | boolean | 启用生成邀请码功能 true - 启用 false-禁用 默认false | ||||
└─inviteCode | string | 邀请码 | ||||
└─pageNo | int32 | 页码 | -No comments found. | |||
└─pageSize | int32 | 每页的大小 | - | No comments found. | ||
└─totalCount | int32 | 总行数 | - | No comments found. | ||
└─beginIndex | int32 | No comments found. | - | |||
└─orderCondition | string | No comments found.- | ||||
└─pageCount | int32 | No comments found.- | ||||
└─sort | string | 排序字段 | -No comments found. | |||
└─order | string | 排序顺序 | - | No comments found. | ||
└─mulFieldOrder | string | No comments found.- |
请求示例
代码块 |
---|
curl -X POST -k -H 'Content-Type: application/json; charset=utf-8' -H 'X-Token:r9i6T6VXdAV0vjiMBxODFRddRVY' -i https://integrate.rabbitpre.com/api/open/api/smsService/obtainSMSVerifyCode --data '{ "appId": "192", "componentId": "192", "uid": "c508ec56-ef3a-4bdc-8f28-2787af48016f", "nickName": "merle.batz", "startTime": "2022-03-30 20:31:59", "endTime": "2022-03-30", "pageNo": 312, "pageSize": 10 }' |
...