文档
测试

活动场次用户参与列表1.0

POST
/api/admins/activeEnjoy

请求参数

参数名
类型
描述
必填
active_scene_id
int
活动场次id,示例:5
必填
type
int
不传= 默认所有报名用户 ,1=报名未交费,2=交费成功未签到(未到)
可选

响应参数

参数名
类型
描述
必填
code
int
示例:200
必填
message
string
示例:获取成功
必填
data
array
数据列表
必填
enjoy_id
int
参与id,示例:50
必填
user_name
string
客户姓名,示例:李四
必填
user_mobile
string
电话,示例:18181992798
必填
pay_fee_status
int
交费状态,0=未交费,1=已交费
必填
whether_to_draw
int
抽奖资格, 0=没有 ,1=有
必填

说明 / 示例

{ "code": 200, "message": "获取成功", "data": [ { "enjoy_id": 50, "user_name": "李四", "user_mobile": "18181992798", "pay_fee_status": 1, "whether_to_draw": 0 }, { "enjoy_id": 53, "user_name": "曹阳", "user_mobile": "15879218481", "pay_fee_status": 1, "whether_to_draw": 0 }, { "enjoy_id": 54, "user_name": "李四", "user_mobile": "15822388482", "pay_fee_status": 1, "whether_to_draw": 0 } ] }