描述

查询课程签到记录,最多单次支持查询50条记录;

接口地址

http://api-class.e.vhall.com/api/class/sign/class-sign-list

请求参数

公共参数需要每次请求都附带上,详细内容请参考公共参数

参数名 类型 必选 说明
child_id int 子账户id
class_id string 课程id
curr_page int 页数 默认为1
pagesize int 每页展示条数 默认为50,至多50

响应参数

参数名 类型 说明
total int 总签到数
totalpage int 总页数
list array 签到人员信息
id int 签到id
creator_id int 签到发起者id
creator_nickname string 签到发起者昵称
created_at string 签到时间

响应示例

{
  "code": 200,
  "msg": "success",
  "data": {
    "total": 2,
    "totalpage": 1,
    "list": [
      {
        "id": 19467,
        "creator_id": "288333",
        "creator_nickname": "c969573627",
        "created_at": "2020-09-08 23:36:56"
      },
      {
        "id": 19466,
        "creator_id": "288333",
        "creator_nickname": "c969573627",
        "created_at": "2020-09-08 23:36:31"
      }
    ]
  }
}

错误码

code 含义
10005 课程不存在
20000 子账号不存在
400 每页最多显示50条