POST api/download/getall
Request Information
URI Parameters
None.
Body Parameters
DownloadModel| Name | Description | Type | Additional information |
|---|---|---|---|
| DownloadId | integer |
None. |
|
| ClassName | string |
None. |
|
| Section | string |
None. |
|
| Title | string |
None. |
|
| FilePath | string |
None. |
|
| UploadDate | date |
None. |
|
| StudentId | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"DownloadId": 1,
"ClassName": "sample string 2",
"Section": "sample string 3",
"Title": "sample string 4",
"FilePath": "sample string 5",
"UploadDate": "2026-02-10T10:56:29.2296025-06:00",
"StudentId": 7
}
application/xml, text/xml
Sample:
<DownloadModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SchoolAPI.Models"> <ClassName>sample string 2</ClassName> <DownloadId>1</DownloadId> <FilePath>sample string 5</FilePath> <Section>sample string 3</Section> <StudentId>7</StudentId> <Title>sample string 4</Title> <UploadDate>2026-02-10T10:56:29.2296025-06:00</UploadDate> </DownloadModel>
application/x-www-form-urlencoded
Sample:
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. |