GET api/Marketing/VideosPaged?currentPage={currentPage}&pageSize={pageSize}
Get videos paginated
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| currentPage | integer |
Required |
|
| pageSize | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of ContentVideoView| Name | Description | Type | Additional information |
|---|---|---|---|
| VideoId | integer |
None. |
|
| SourceId | integer |
None. |
|
| SourceName | string |
None. |
|
| VideoTitle | string |
None. |
|
| VideoEmbedCode | string |
None. |
|
| IsFeatured | boolean |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"VideoId": 1,
"SourceId": 1,
"SourceName": "sample string 2",
"VideoTitle": "sample string 3",
"VideoEmbedCode": "sample string 4",
"IsFeatured": true
},
{
"VideoId": 1,
"SourceId": 1,
"SourceName": "sample string 2",
"VideoTitle": "sample string 3",
"VideoEmbedCode": "sample string 4",
"IsFeatured": true
}
]
application/xml, text/xml
Sample:
<ArrayOfContentVideoView xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Virtuoso.Domain">
<ContentVideoView>
<IsFeatured>true</IsFeatured>
<SourceId>1</SourceId>
<SourceName>sample string 2</SourceName>
<VideoEmbedCode>sample string 4</VideoEmbedCode>
<VideoId>1</VideoId>
<VideoTitle>sample string 3</VideoTitle>
</ContentVideoView>
<ContentVideoView>
<IsFeatured>true</IsFeatured>
<SourceId>1</SourceId>
<SourceName>sample string 2</SourceName>
<VideoEmbedCode>sample string 4</VideoEmbedCode>
<VideoId>1</VideoId>
<VideoTitle>sample string 3</VideoTitle>
</ContentVideoView>
</ArrayOfContentVideoView>