Back | Webservices | Home

CreateTagCloud

Description

Automatically run through all the videos in a given playlist and generate the tags and the quanitity fields.

Request Parameters

Name Description

soap:header

Username and password

Type: UserCredentials

Children: Userid, Password

clientID The Client ID
Type: int
channelID The Channel ID
Type: int
playlistID An Array of Playlist IDs
Type: int[]

Response Elements

Name Description

CreateTagCloudResult

true or false indicating if the tagcloud was created.

Type: Boolean

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>
    <CreateTagCloud xmlns="http://vidzapper.net/Webservice/">
      <clientID>int</clientID>
      <channelID>int</channelID>
      <playlistID>
        <int>int</int>
        <int>int</int>
      </playlistID>
    </CreateTagCloud>
  </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>
    <CreateTagCloudResponse xmlns="http://vidzapper.net/Webservice/">
      <CreateTagCloudResult>boolean</CreateTagCloudResult>
    </CreateTagCloudResponse>
  </soap12:Body>
</soap12:Envelope>