GET api/Performance/ChapterCount?cid={cid}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
cid

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of ChapterCount_Result1
NameDescriptionTypeAdditional information
chapterid

integer

None.

ChapterDuration

integer

None.

ChapterName

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "chapterid": 1,
    "ChapterDuration": 1,
    "ChapterName": "sample string 2"
  },
  {
    "chapterid": 1,
    "ChapterDuration": 1,
    "ChapterName": "sample string 2"
  }
]

application/xml, text/xml

Sample:
<ArrayOfChapterCount_Result1 xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TechcanvassWebApi">
  <ChapterCount_Result1>
    <ChapterDuration>1</ChapterDuration>
    <ChapterName>sample string 2</ChapterName>
    <chapterid>1</chapterid>
  </ChapterCount_Result1>
  <ChapterCount_Result1>
    <ChapterDuration>1</ChapterDuration>
    <ChapterName>sample string 2</ChapterName>
    <chapterid>1</chapterid>
  </ChapterCount_Result1>
</ArrayOfChapterCount_Result1>