Updates a VzSync Object.
| Name | Description |
|---|---|
|
soap:header |
Username and password Type: UserCredentials Children: Userid, Password |
| syncID |
The Sync ID type: int |
| guid |
The GUID type: string |
| contentMetaDataID |
The Content MetaData ID type: int |
| syncEvent |
The Event type: string |
| syncType |
The Type of Event type: string |
| target |
The Target type: string |
| inTime |
The Time when to start the event type: string |
| outTime |
The Time when to end the event type: string |
| syncObject |
The Object type: string |
| syncObjectType |
The Object Type type: string |
| Name | Description |
|---|---|
|
UpdateVzSyncResult |
A VzSync object Type: VzSync |
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>
<UpdateVzSync xmlns="http://vidzapper.net/Webservice/">
<syncID>int</syncID>
<contentMetaDataID>int</contentMetaDataID>
<syncEvent>string</syncEvent>
<syncType>string</syncType>
<target>string</target>
<inSeconds>int</inSeconds>
<outSeconds>int</outSeconds>
<syncObject>string</syncObject>
<syncObjectType>string</syncObjectType>
</UpdateVzSync>
</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>
<UpdateVzSyncResponse xmlns="http://vidzapper.net/Webservice/">
<UpdateVzSyncResult>
<ID>long</ID>
<ContentMetaDataID>long</ContentMetaDataID>
<SyncEvent>string</SyncEvent>
<SyncType>string</SyncType>
<SyncTarget>string</SyncTarget>
<InSeconds>int</InSeconds>
<OutSeconds>int</OutSeconds>
<SyncObject>string</SyncObject>
<SyncObjectType>string</SyncObjectType>
<Error>
<Status>string</Status>
<Message>string</Message>
<ResultCode>string</ResultCode>
</Error>
</UpdateVzSyncResult>
</UpdateVzSyncResponse>
</soap12:Body>
</soap12:Envelope>