GET Api/Courses/GetSupportMaterialsV2?idCourse={idCourse}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| idCourse | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of SupportMaterialsResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| idCourseSupportMaterial | integer |
None. |
|
| idCourse | integer |
None. |
|
| title | string |
None. |
|
| fileName | string |
None. |
|
| filePath | string |
None. |
|
| unique | string |
None. |
|
| status | boolean |
None. |
|
| registrationUser | integer |
None. |
|
| registrationDate | date |
None. |
|
| supportMaterialCategory | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"idCourseSupportMaterial": 1,
"idCourse": 2,
"title": "sample string 3",
"fileName": "sample string 4",
"filePath": "sample string 5",
"unique": "sample string 6",
"status": true,
"registrationUser": 8,
"registrationDate": "2026-02-14T17:50:02.6625036-06:00",
"supportMaterialCategory": 10
},
{
"idCourseSupportMaterial": 1,
"idCourse": 2,
"title": "sample string 3",
"fileName": "sample string 4",
"filePath": "sample string 5",
"unique": "sample string 6",
"status": true,
"registrationUser": 8,
"registrationDate": "2026-02-14T17:50:02.6625036-06:00",
"supportMaterialCategory": 10
}
]
application/xml, text/xml
Sample:
<ArrayOfSupportMaterialsResponse xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<SupportMaterialsResponse>
<idCourseSupportMaterial>1</idCourseSupportMaterial>
<idCourse>2</idCourse>
<title>sample string 3</title>
<fileName>sample string 4</fileName>
<filePath>sample string 5</filePath>
<unique>sample string 6</unique>
<status>true</status>
<registrationUser>8</registrationUser>
<registrationDate>2026-02-14T17:50:02.6625036-06:00</registrationDate>
<supportMaterialCategory>10</supportMaterialCategory>
</SupportMaterialsResponse>
<SupportMaterialsResponse>
<idCourseSupportMaterial>1</idCourseSupportMaterial>
<idCourse>2</idCourse>
<title>sample string 3</title>
<fileName>sample string 4</fileName>
<filePath>sample string 5</filePath>
<unique>sample string 6</unique>
<status>true</status>
<registrationUser>8</registrationUser>
<registrationDate>2026-02-14T17:50:02.6625036-06:00</registrationDate>
<supportMaterialCategory>10</supportMaterialCategory>
</SupportMaterialsResponse>
</ArrayOfSupportMaterialsResponse>