GET api/Videos?ClsName={ClsName}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| ClsName | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of VideoTutorials| Name | Description | Type | Additional information |
|---|---|---|---|
| VideoId | integer |
None. |
|
| ClassName | string |
None. |
|
| DivisionName | string |
None. |
|
| SubjectName | string |
None. |
|
| VideoTitle | string |
None. |
|
| ShowDate | date |
None. |
|
| VideoPath | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"VideoId": 1,
"ClassName": "sample string 2",
"DivisionName": "sample string 3",
"SubjectName": "sample string 4",
"VideoTitle": "sample string 5",
"ShowDate": "2025-12-15T08:55:44.8135676+05:30",
"VideoPath": "sample string 7"
},
{
"VideoId": 1,
"ClassName": "sample string 2",
"DivisionName": "sample string 3",
"SubjectName": "sample string 4",
"VideoTitle": "sample string 5",
"ShowDate": "2025-12-15T08:55:44.8135676+05:30",
"VideoPath": "sample string 7"
}
]
application/xml, text/xml
Sample:
<ArrayOfVideoTutorials xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LearnFirstWebApi.Models">
<VideoTutorials>
<ClassName>sample string 2</ClassName>
<DivisionName>sample string 3</DivisionName>
<ShowDate>2025-12-15T08:55:44.8135676+05:30</ShowDate>
<SubjectName>sample string 4</SubjectName>
<VideoId>1</VideoId>
<VideoPath>sample string 7</VideoPath>
<VideoTitle>sample string 5</VideoTitle>
</VideoTutorials>
<VideoTutorials>
<ClassName>sample string 2</ClassName>
<DivisionName>sample string 3</DivisionName>
<ShowDate>2025-12-15T08:55:44.8135676+05:30</ShowDate>
<SubjectName>sample string 4</SubjectName>
<VideoId>1</VideoId>
<VideoPath>sample string 7</VideoPath>
<VideoTitle>sample string 5</VideoTitle>
</VideoTutorials>
</ArrayOfVideoTutorials>