| |||||
API Home >> Sheet >> API Reference >> tags
Add a set of tags to a particular workbook.
| Field | Description |
| tags | [string] - One or more tag(s) to be associated with this workbook. For adding multiple tags, separate them by 'space'. |
<form method="POST" action="http://sheet.zoho.com/api/private/xml/addTags/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 associated with the workbook. |
<?xml version="1.0" encoding="UTF-8" ?>
<response uri="/api/private/xml/addTags/15265000000006067">
<result>
<workbookId>15265000000006067</workbookId>
<tags>
<tag name="sales" />
<tag name="forecast" />
<tag name="monthlyfigures" />
</tags>
</result>
</response>
{
"response":
{
"uri": "/api/private/json/addTags/15265000000006067",
"result":
{
"workbookId":"15265000000006067",
"tags":
{
"tag":
[
{
"name":"temperature"
},
{
"name":"temp"
},
{
"name":"converter"
}
]
}
}
}
}