GET api/Manage/MyVideoHistory?page={page}&pageSize={pageSize}&empIds={empIds}&deptId={deptId}&stime={stime}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
page

integer

Required

pageSize

integer

Required

empIds

string

Default value is

deptId

string

Default value is

stime

string

Default value is

Body Parameters

None.

Response Information

Resource Description

BaseResponseOfListOfEmpVideoTime
NameDescriptionTypeAdditional information
data

Collection of EmpVideoTime

None.

msg

string

None.

code

integer

None.

total

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "data": [
    {
      "id": 1,
      "emp_id": 2,
      "emp_name": "sample string 3",
      "emp_code": "sample string 4",
      "dept_id": 5,
      "dept_name": "sample string 6",
      "total_length": 7,
      "total_length_label": "0小时0分钟7秒",
      "same_day_length": 8,
      "same_day_length_label": "0小时0分钟8秒"
    },
    {
      "id": 1,
      "emp_id": 2,
      "emp_name": "sample string 3",
      "emp_code": "sample string 4",
      "dept_id": 5,
      "dept_name": "sample string 6",
      "total_length": 7,
      "total_length_label": "0小时0分钟7秒",
      "same_day_length": 8,
      "same_day_length_label": "0小时0分钟8秒"
    }
  ],
  "msg": "sample string 1",
  "code": 2,
  "total": 3
}

application/xml, text/xml

Sample:
<BaseResponseOfArrayOfEmpVideoTimewByyLw_Px xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LearnAPI">
  <code>2</code>
  <msg>sample string 1</msg>
  <total>3</total>
  <data>
    <EmpVideoTime>
      <dept_id>5</dept_id>
      <dept_name>sample string 6</dept_name>
      <emp_code>sample string 4</emp_code>
      <emp_id>2</emp_id>
      <emp_name>sample string 3</emp_name>
      <id>1</id>
      <same_day_length>8</same_day_length>
      <total_length>7</total_length>
    </EmpVideoTime>
    <EmpVideoTime>
      <dept_id>5</dept_id>
      <dept_name>sample string 6</dept_name>
      <emp_code>sample string 4</emp_code>
      <emp_id>2</emp_id>
      <emp_name>sample string 3</emp_name>
      <id>1</id>
      <same_day_length>8</same_day_length>
      <total_length>7</total_length>
    </EmpVideoTime>
  </data>
</BaseResponseOfArrayOfEmpVideoTimewByyLw_Px>