简要描述:

支付完之后轮询这个接口,成功后跳转申请记录页面

请求域名:

  • http://xx.com

请求路由:

POST/&route=plugin.exam-engine.frontend.member-paper.my-score

请求参数说明:

参数名 类型 是否必需 说明
id int 考试记录id

返回示例:

正确时返回答题记录:

{
    "result": 1,
    "msg": "ok",
    "data": [
        {
            "id": 8,
            "uniacid": 1,
            "member_id": 33,
            "type": 1,
            "join_time": "",
            "submit_time": "",
            "duration": 7200,
            "is_submit": 0,
            "is_pass": 0,
            "score": 0,
            "paper_id": 1,
            "question_bank_id": 0,
            "created_at": "2025-09-15 15:47:08",
            "updated_at": "2025-09-15 15:47:08",
            "appointment_id": 1,
            "task_id": 0
        },
        {
            "id": 5,
            "uniacid": 1,
            "member_id": 33,
            "type": 1,
            "join_time": "",
            "submit_time": "2025-09-10 15:03:04",
            "duration": 2000,
            "is_submit": 1,
            "is_pass": 0,
            "score": 40,
            "paper_id": 1,
            "question_bank_id": 0,
            "created_at": "2025-09-10 10:52:37",
            "updated_at": "2025-09-10 15:03:04",
            "appointment_id": 1,
            "task_id": 0
        }
    ],
    "validate_page": {
        "is_bind_mobile": 0,
        "invite_page": 0,
        "is_invite": 1,
        "is_login": 1,
        "invite_mobile": 1,
        "bind_address": {
            "is_bind_address": 0,
            "bind_address_type": 0,
            "bind_address_page": []
        },
        "need_video": 0,
        "force_bind_car": 0,
        "is_auth": 0,
        "real_name_auth_scene": [],
        "real_name_auth_is_open": 1,
        "bind_mobile_page": [],
        "is_level_compel": 0
    }
}
参数名 类型 说明
id int 考试记录的唯一标识符
uniacid int 系统关联的业务ID(如小程序/公众号ID)
member_id int 参加考试的会员ID
type int 考试类型(1表示常规考试)
join_time string 参加考试
submit_time string 提交考试
duration int 考试总时长(单位:秒)
is_submit int 是否已提交(0=未提交,1=已提交)
is_pass int 是否通过考试(0=未通过,1=通过)
score int 考试得分,-1表示待评分
paper_id int 关联的试卷ID
question_bank_id int 关联的题库ID(0表示未指定题库)
created_at string 记录创建时间(格式:YYYY-MM-DD HH:mm:ss)
updated_at string 记录最后更新时间(格式:YYYY-MM-DD HH:mm:ss)
appointment_id int 关联的预约ID
task_id int 关联的任务ID(0表示独立考试)