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