Returns the number of times a clip has been played.
| Name | Description |
|---|---|
|
soap:header |
Username and password Type: UserCredentials Children: Userid, Password |
| guid |
GUID Type: string |
| Name | Description |
|---|---|
|
Time element. Type: Time |
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>
<GetViewerSessionLengthByGUID xmlns="http://vidzapper.net/Webservice/">
<guid>string</guid>
</GetViewerSessionLengthByGUID>
</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>
<GetViewerSessionLengthByGUIDResponse xmlns="http://vidzapper.net/Webservice/">
<GetViewerSessionLengthByGUIDResult>
<Hour>int</Hour>
<Minute>int</Minute>
<Second>int</Second>
</GetViewerSessionLengthByGUIDResult>
</GetViewerSessionLengthByGUIDResponse>
</soap12:Body>
</soap12:Envelope>