GET api/VideosPage/GetRecordedSessions?batchid={batchid}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
batchid

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of GetRecordedSessions_Result
NameDescriptionTypeAdditional information
batchid

integer

None.

displayname

string

None.

Response Formats

application/json, text/json

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

application/xml, text/xml

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