Removes a specified Tag from the Tag Cloud.
| 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 |
| Name | Description |
|---|---|
|
AddTagResultRemoveTagResult |
A boolean, true if the tag was successfully removed Type: Boolean |
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>
<?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>