Back | Webservices | Home

TagClickedByWord

Description

Increments the value of the Search Quantity, filtered by the channelID and the Search Word.

Request Parametersest Parameters

Name Description

soap:header

Username and password

Type: UserCredentials

Children: Userid

channelID The Channel ID
Type: int
searchWord The Search word of the tag cloud
Type: string

Response Elementsponse Elements

Name Description

TagClickedByWordResult

A TagCloud Object

Type: TagCloud

Examples 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>
    <TagClickedByWord xmlns="http://vidzapper.net/Webservice/">
      <channelID>int</channelID>
      <searchWord>string</searchWord>
    </TagClickedByWord>
  </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>
    <TagClickedByWordResponse xmlns="http://vidzapper.net/Webservice/">
      <TagClickedByWordResult>
        <ID>int</ID>
        <ChannelID>int</ChannelID>
        <PlaylistID>int</PlaylistID>
        <SearchWord>string</SearchWord>
        <SearchQuantity>int</SearchQuantity>
        <Error>
          <Status>string</Status>
          <Message>string</Message>
        </Error>
      </TagClickedByWordResult>
    </TagClickedByWordResponse>
  </soap12:Body>
</soap12:Envelope>