Back | Webservices | Home

GetVzSyncByContentMetaDataID

Description

Returns the VzSync object By Content Meta Data ID.

Request Parameters

Name Description

soap:header

Username and password

Type: UserCredentials

Children: Userid, Password

id The Content MetaData ID
type: int

Response Elements

Name Description

GetVzSyncByContentMetaDataIDResult

A list of VzSync objects

Type: List VzSync

Example using SOAP

Example Request

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>
    <GetVzSyncByContentMetaDataID xmlns="http://vidzapper.net/Webservice/">
      <id>int</id>
    </GetVzSyncByContentMetaDataID>
  </soap12:Body>
</soap12:Envelope>

Example 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:Body>
    <GetVzSyncByContentMetaDataIDResponse xmlns="http://vidzapper.net/Webservice/">
      <GetVzSyncByContentMetaDataIDResult>
        <VzSync>
          <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>
        </VzSync>
        <VzSync>
          <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>
        </VzSync>
      </GetVzSyncByContentMetaDataIDResult>
    </GetVzSyncByContentMetaDataIDResponse>
  </soap12:Body>
</soap12:Envelope>