文档
测试

查看被拒绝的参赛活动

POST
https://udd.uxiao.vip/api.php/vote/get_refuse_vote

请求头

参数名
类型
描述
必填
token
string
示例:ed6519c2f7700c3bb9083e5532b710df23e0a12e97a46b3d4e2736b4c3992811
必填

响应参数

参数名
类型
描述
必填
code
int
示例:1
必填
msg
string
示例:success
必填
data
array
数据列表
必填
id
int
示例:42
必填
vote_id
int
示例:5
必填
vote
object
数据字典
必填
id
int
示例:5
必填
title
string
示例:男神榜
必填
end_time
string
示例:2021-07-20 23:59
必填
start_time
string
示例:2021-06-11 00:00
必填
polling_time
string
示例:2021-06-18 00:00
必填
is_end
int
示例:0
必填
audit_record
array
数据列表
必填
id
int
示例:669
必填
remark
string
示例:1
必填
contestant_id
int
示例:42
必填
ranking
int
示例:1
必填

说明 / 示例

``` { "code": 1, "msg": "success", "data": [ //未通过的报名数组 { "id": 42, //参赛id "vote_id": 5, //活动id "vote": { "id": 5, "title": "男神榜", //活动名称 "end_time": "2021-07-20 23:59", "start_time": "2021-06-11 00:00", "polling_time": "2021-06-18 00:00", "is_end": 0 }, "audit_record": [ //拒绝列表 取第一个 { "id": 669, "remark": "1", //拒绝原因 "contestant_id": 42 }, { "id": 623, "remark": "1", "contestant_id": 42 }, { "id": 621, "remark": "1", "contestant_id": 42 }, { "id": 620, "remark": "1", "contestant_id": 42 }, { "id": 619, "remark": "1", "contestant_id": 42 }, { "id": 618, "remark": "1", "contestant_id": 42 }, { "id": 617, "remark": "1", "contestant_id": 42 }, { "id": 616, "remark": "1", "contestant_id": 42 }, { "id": 614, "remark": "1", "contestant_id": 42 }, { "id": 613, "remark": "aa", "contestant_id": 42 } ], "ranking": 1 } ] }