Back | Webservices | Home

RemoveTag

Description

Removes a specified Tag from the Tag Cloud.

Request Parameters

Name Description

soap:header

Username and password

Type: UserCredentials

Children: Userid, Password

channelID The Channel ID
Type: int
searchWord The Key word / tag
Type: int

Response Elements

Name Description

AddTagResultRemoveTagResult

A boolean, true if the tag was successfully removed

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"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Header>
    <UserCredentials xmlns="http://vidzapper.net/Webservice/">
      <Userid>string</Userid>
      <Password>string</Password>
    </UserCredentials>
  </soap:Header>
  <soap:Body>
    <RemoveTag xmlns="http://vidzapper.net/Webservice/">
      <channelID>int</channelID>
      <searchWord>string</searchWord>
    </RemoveTag>
  </soap:Body>
</soap:Envelope>

Example Response

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <RemoveTagResponse xmlns="http://vidzapper.net/Webservice/">
      <RemoveTagResult>boolean</RemoveTagResult>
    </RemoveTagResponse>
  </soap:Body>
</soap:Envelope>