GET api/VideoLinks/GetVideoLinks
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
VideoLinkViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| VideoLinkList | Collection of VideoLinkView |
None. |
Response Formats
application/json, text/json
Sample:
{
"VideoLinkList": [
{
"VideoLinkCategoryId": 1,
"VideoLinkCategoryName": "sample string 2",
"VideoLinkId": 3,
"VideoLinkTitle": "sample string 4",
"VideoLinkURL": "sample string 5",
"TransDate": "2025-10-28T00:55:54.0026829+05:30",
"UserId": "sample string 7"
},
{
"VideoLinkCategoryId": 1,
"VideoLinkCategoryName": "sample string 2",
"VideoLinkId": 3,
"VideoLinkTitle": "sample string 4",
"VideoLinkURL": "sample string 5",
"TransDate": "2025-10-28T00:55:54.0026829+05:30",
"UserId": "sample string 7"
}
]
}
application/xml, text/xml
Sample:
<VideoLinkViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Master.Operation.CustomModels">
<VideoLinkList>
<VideoLinkView>
<TransDate>2025-10-28T00:55:54.0026829+05:30</TransDate>
<UserId>sample string 7</UserId>
<VideoLinkCategoryId>1</VideoLinkCategoryId>
<VideoLinkCategoryName>sample string 2</VideoLinkCategoryName>
<VideoLinkId>3</VideoLinkId>
<VideoLinkTitle>sample string 4</VideoLinkTitle>
<VideoLinkURL>sample string 5</VideoLinkURL>
</VideoLinkView>
<VideoLinkView>
<TransDate>2025-10-28T00:55:54.0026829+05:30</TransDate>
<UserId>sample string 7</UserId>
<VideoLinkCategoryId>1</VideoLinkCategoryId>
<VideoLinkCategoryName>sample string 2</VideoLinkCategoryName>
<VideoLinkId>3</VideoLinkId>
<VideoLinkTitle>sample string 4</VideoLinkTitle>
<VideoLinkURL>sample string 5</VideoLinkURL>
</VideoLinkView>
</VideoLinkList>
</VideoLinkViewModel>