| |||||
API Home >> Show >> API Reference >> Private
Remove set of tags from a particular presentation.
| Field | Description |
| presentationId | Unique ID of the presentation from which tags are to be removed. |
| tags | [string] - One or more tag(s) to be removed from this presentation. For removing multiple tags, separate them by 'space'. |
<form method="POST" action="http://show.zoho.com/api/private/xml/removeTags/[presentationId]?apikey=[APIKEY]&ticket=[Ticket]">
<input type="hidden" name="tagname" value="tag1 tag2 tag3">
<input type="submit" value="RemoveTags" class="divbutton" name="submit">
</form>
| Field | Description |
| presentationId | Unique ID associated with the presentation. |
| tag | Name of one or more tag(s) that is being removed from the presentation. |
| tag name | List of tag names to be removed |
<?xml version="1.0" encoding="UTF-8" ?>
<response uri="/api/private/xml/removeTags/8892000000064009">
<result>
<presentationId>8892000000064009</presentationId>
<tag>
<tag name="search" />
<tag name="forecast" />
</tag>
</result>
</response>
{
"response":
{
"uri": "/api/private/json/removeTags/8892000000064009",
"result":
{
"presentationId":"8892000000064009",
"tags":
{
"tag":
[
{
"name":"search"
},
{
"name":"forecast"
}
]
}
}
}
}