Returns an XML MRSS feed of your content, limited by a date range, allowing multiple playlists
| Name | Description |
|---|---|
|
soap:header |
Username and password Type: UserCredentials Children: Userid, Password |
| clientID |
The Client ID Type: int |
| channelID |
The Channel ID Type: int |
| playlistIDs |
The Playlist IDs Type: Array int |
| fromDay |
The Day to start searching Type: int |
| fromMonth |
The Month to start searching Type: int |
| fromYear |
The Year to start searching Type:int |
| toDay |
The Day to stop searching Type: int |
| toMonth |
The Month to stop searching Type: int |
| toYear |
The Year to stop searching Type:int |
| Name | Description |
|---|---|
|
GenerateMRSSFeedByDateRangeAndMultiPlaylistResult |
MRSS Feed Type: XML |
The following is a sample SOAP 1.2 request and response.
<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
<soap12:Header>
<UserCredentials xmlns="http://vidzapper.net/Webservice/">
<Userid>string</Userid>
<Password>string</Password>
</UserCredentials>
</soap12:Header>
<soap12:Body>
<GenerateMRSSFeedByDateRangeAndMultiPlaylist xmlns="http://vidzapper.net/Webservice/">
<clientID>int</clientID>
<channelID>int</channelID>
<playlistIDs>
<int>int</int>
<int>int</int>
</playlistIDs>
<fromDay>int</fromDay>
<fromMonth>int</fromMonth>
<fromYear>int</fromYear>
<toDay>int</toDay>
<toMonth>int</toMonth>
<toYear>int</toYear>
</GenerateMRSSFeedByDateRangeAndMultiPlaylist>
</soap12:Body>
</soap12:Envelope>
<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
<soap12:Body>
<GenerateMRSSFeedByDateRangeAndMultiPlaylistResponse xmlns="http://vidzapper.net/Webservice/">
<GenerateMRSSFeedByDateRangeAndMultiPlaylistResult>xml</GenerateMRSSFeedByDateRangeAndMultiPlaylistResult>
</GenerateMRSSFeedByDateRangeAndMultiPlaylistResponse>
</soap12:Body>
</soap12:Envelope>