GET api/OECoursePeriods/GetStudentStoryList?aid={aid}&shopId={shopId}

推荐阅读

Request Information

URI Parameters

NameDescriptionTypeAdditional information
aid

string

Required

shopId

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of StudentStorysInfo
NameDescriptionTypeAdditional information
StoryID

学员故事ID

string

None.

Title

标题

string

None.

Images

默认图片

string

None.

Contents

内容

string

None.

LikeCount

点赞数

integer

None.

FavoriteCount

收藏数

integer

None.

ReadCount

阅读数

string

None.

isFavorite

是否收藏

boolean

None.

StudentStorysTypeList

学员故事分类

Collection of StudentStorysTypeInfo

None.

Like

是否点赞

boolean

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "StoryID": "sample string 1",
    "Title": "sample string 2",
    "Images": "sample string 3",
    "Contents": "sample string 4",
    "LikeCount": 5,
    "FavoriteCount": 6,
    "ReadCount": "sample string 7",
    "isFavorite": true,
    "StudentStorysTypeList": [
      {
        "StoryTypeID": "sample string 1",
        "TypeIco": "sample string 2",
        "TypeName": "sample string 3"
      },
      {
        "StoryTypeID": "sample string 1",
        "TypeIco": "sample string 2",
        "TypeName": "sample string 3"
      }
    ],
    "Like": true
  },
  {
    "StoryID": "sample string 1",
    "Title": "sample string 2",
    "Images": "sample string 3",
    "Contents": "sample string 4",
    "LikeCount": 5,
    "FavoriteCount": 6,
    "ReadCount": "sample string 7",
    "isFavorite": true,
    "StudentStorysTypeList": [
      {
        "StoryTypeID": "sample string 1",
        "TypeIco": "sample string 2",
        "TypeName": "sample string 3"
      },
      {
        "StoryTypeID": "sample string 1",
        "TypeIco": "sample string 2",
        "TypeName": "sample string 3"
      }
    ],
    "Like": true
  }
]

application/xml, text/xml

Sample:
<ArrayOfStudentStorysInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/open.wst.com.Areas.OnlineEducation.Models">
  <StudentStorysInfo>
    <Contents>sample string 4</Contents>
    <FavoriteCount>6</FavoriteCount>
    <Images>sample string 3</Images>
    <Like>true</Like>
    <LikeCount>5</LikeCount>
    <ReadCount>sample string 7</ReadCount>
    <StoryID>sample string 1</StoryID>
    <StudentStorysTypeList>
      <StudentStorysTypeInfo>
        <StoryTypeID>sample string 1</StoryTypeID>
        <TypeIco>sample string 2</TypeIco>
        <TypeName>sample string 3</TypeName>
      </StudentStorysTypeInfo>
      <StudentStorysTypeInfo>
        <StoryTypeID>sample string 1</StoryTypeID>
        <TypeIco>sample string 2</TypeIco>
        <TypeName>sample string 3</TypeName>
      </StudentStorysTypeInfo>
    </StudentStorysTypeList>
    <Title>sample string 2</Title>
    <isFavorite>true</isFavorite>
  </StudentStorysInfo>
  <StudentStorysInfo>
    <Contents>sample string 4</Contents>
    <FavoriteCount>6</FavoriteCount>
    <Images>sample string 3</Images>
    <Like>true</Like>
    <LikeCount>5</LikeCount>
    <ReadCount>sample string 7</ReadCount>
    <StoryID>sample string 1</StoryID>
    <StudentStorysTypeList>
      <StudentStorysTypeInfo>
        <StoryTypeID>sample string 1</StoryTypeID>
        <TypeIco>sample string 2</TypeIco>
        <TypeName>sample string 3</TypeName>
      </StudentStorysTypeInfo>
      <StudentStorysTypeInfo>
        <StoryTypeID>sample string 1</StoryTypeID>
        <TypeIco>sample string 2</TypeIco>
        <TypeName>sample string 3</TypeName>
      </StudentStorysTypeInfo>
    </StudentStorysTypeList>
    <Title>sample string 2</Title>
    <isFavorite>true</isFavorite>
  </StudentStorysInfo>
</ArrayOfStudentStorysInfo>