GET GetCourseHistoryList?aid={aid}&shopId={shopId}

观看历史

Request Information

URI Parameters

NameDescriptionTypeAdditional information
aid

用户ID

string

Required

shopId

商城ID

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of CourseHistoryList
NameDescriptionTypeAdditional information
Id

课程ID

string

None.

Img

图片

string

None.

Title

名称

string

None.

PlayProgress

播放进度

string

None.

IsOneWeek

是否一周内

boolean

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": "sample string 1",
    "Img": "sample string 2",
    "Title": "sample string 3",
    "PlayProgress": "sample string 4",
    "IsOneWeek": true
  },
  {
    "Id": "sample string 1",
    "Img": "sample string 2",
    "Title": "sample string 3",
    "PlayProgress": "sample string 4",
    "IsOneWeek": true
  }
]

application/xml, text/xml

Sample:
<ArrayOfCourseHistoryList xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/open.wst.com.Areas.OnlineEducation.Models">
  <CourseHistoryList>
    <Id>sample string 1</Id>
    <Img>sample string 2</Img>
    <IsOneWeek>true</IsOneWeek>
    <PlayProgress>sample string 4</PlayProgress>
    <Title>sample string 3</Title>
  </CourseHistoryList>
  <CourseHistoryList>
    <Id>sample string 1</Id>
    <Img>sample string 2</Img>
    <IsOneWeek>true</IsOneWeek>
    <PlayProgress>sample string 4</PlayProgress>
    <Title>sample string 3</Title>
  </CourseHistoryList>
</ArrayOfCourseHistoryList>