Zoho - Trademark
Blogs
   Forums   Sheet Home
   Toll Free : 888 900 9646


API Home >> Sheet >> API Reference >> tags



Get a list of tags associated with a public workbook.



Request URL :

                                XML : http://sheet.zoho.com/api/public/xml/tags/[BookID]?apikey=[API Key]

                                JSON : http://sheet.zoho.com/api/public/json/tags/[BookID]?apikey=[API Key]

Response fields

The schema document for the API response is located at: http://sheet.zoho.com/schema/tags.xsd

Field
Description
tag
list of tag names associated with the public workbook


Sample Response

The following is the sample XML response for the above method:


<?xml version="1.0" encoding="UTF-8" ?>
<response uri="/api/public/xml/tags/6001000000002019">
  <result>

    <tags>

        <tag name="feed" />
        <tag name="services" />
       </tag>

   </result>
</response>


Equivalent JSON response


{
  "response":
   {
        "uri": "/api/private/json/tags/6001000000002019",
        "result":
        {
           "workbookId":"15265000000006067",
           "tags":
            {
                "tag":
                [
                     {

                        "name":"feed"
                     },
                     {
                        "name":"services"
                     }
                ]
            }
         }
    }
}  



Errors

Displaying list of tags associated with a public workbook method may return general errors. Possible HTTP error code is 2851.