Returns a list of channel objects
| Name | Description |
|---|---|
|
soap:header |
Username and password Type: UserCredentials Children: Userid, Password |
| clientID |
The Client ID Type: int |
| Name | Description |
|---|---|
|
SelectChannelsResult |
A List of Channel Objects Type: List Channel |
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>
<SelectChannels xmlns="http://vidzapper.net/Webservice/">
<clientID>int</clientID>
</SelectChannels>
</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>
<SelectChannelsResponse xmlns="http://vidzapper.net/Webservice/">
<SelectChannelsResult>
<Channel>
<ID>int</ID>
<Name>string</Name>
<ShortDescription>string</ShortDescription>
<LongDescription>string</LongDescription>
<CreationDateTime>dateTime</CreationDateTime>
<ModificationDateTime>dateTime</ModificationDateTime>
<UserID>int</UserID>
<IsActive>boolean</IsActive>
<ChannelLogo>string</ChannelLogo>
<ClientID>int</ClientID>
<CDNID>int</CDNID>
<Error>
<Status>string</Status>
<Message>string</Message>
</Error>
</Channel>
<Channel>
<ID>int</ID>
<Name>string</Name>
<ShortDescription>string</ShortDescription>
<LongDescription>string</LongDescription>
<CreationDateTime>dateTime</CreationDateTime>
<ModificationDateTime>dateTime</ModificationDateTime>
<UserID>int</UserID>
<IsActive>boolean</IsActive>
<ChannelLogo>string</ChannelLogo>
<ClientID>int</ClientID>
<CDNID>int</CDNID>
<Error>
<Status>string</Status>
<Message>string</Message>
</Error>
</Channel>
</SelectChannelsResult>
</SelectChannelsResponse>
</soap12:Body>
</soap12:Envelope>