GET api/CourseDashboard/GetCourseVideoBatches?loginid={loginid}&cid={cid}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
loginid

integer

Required

cid

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of GetCourseVideoBatches1_Result
NameDescriptionTypeAdditional information
batchid

integer

None.

displayname

string

None.

totalvideos

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "batchid": 1,
    "displayname": "sample string 2",
    "totalvideos": 1
  },
  {
    "batchid": 1,
    "displayname": "sample string 2",
    "totalvideos": 1
  }
]

application/xml, text/xml

Sample:
<ArrayOfGetCourseVideoBatches1_Result xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TechcanvassWebApi">
  <GetCourseVideoBatches1_Result>
    <batchid>1</batchid>
    <displayname>sample string 2</displayname>
    <totalvideos>1</totalvideos>
  </GetCourseVideoBatches1_Result>
  <GetCourseVideoBatches1_Result>
    <batchid>1</batchid>
    <displayname>sample string 2</displayname>
    <totalvideos>1</totalvideos>
  </GetCourseVideoBatches1_Result>
</ArrayOfGetCourseVideoBatches1_Result>