POST api/Student/UpdateVideoDownloads
Request Information
URI Parameters
None.
Body Parameters
VideoDownloadData| Name | Description | Type | Additional information |
|---|---|---|---|
| StudentID | integer |
None. |
|
| TopicVideoID | integer |
None. |
|
| VideoDownloadID | integer |
None. |
|
| ID | integer |
None. |
|
| Status | string |
None. |
|
| DownloadURL | string |
None. |
|
| Link | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"StudentID": 1,
"TopicVideoID": 1,
"VideoDownloadID": 1,
"ID": 1,
"Status": "sample string 1",
"DownloadURL": "sample string 2",
"Link": "sample string 3"
}
application/xml, text/xml
Sample:
<StudentController.VideoDownloadData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/OfficersAddaAPI.Controllers"> <DownloadURL>sample string 2</DownloadURL> <ID>1</ID> <Link>sample string 3</Link> <Status>sample string 1</Status> <StudentID>1</StudentID> <TopicVideoID>1</TopicVideoID> <VideoDownloadID>1</VideoDownloadID> </StudentController.VideoDownloadData>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |