Zoho Writer > Writer - REST API Methods > ZW - Get count of tags in a Zoho Writer account

ZW - Get count of tags in a Zoho Writer account

Tags:  

 


Get count of a number of tags in a Zoho Writer account.


Request URL :

                            XML : http://export.writer.zoho.com/api/private//xml/tags/count?apikey=[API Key]&ticket=[Ticket]

                            JSON : http://export.writer.zoho.com/api/private/json/tags/count?apikey=[API Key]&ticket=[Ticket]

                           

Response fields

The schema document for the API response is located at: http://writer.zoho.com/schema/restapi/count.xsd

Field
Description
ownerName
Name of the user having his account with Zoho Writer.
tagsCount
Number of tags in the users' Zoho Writer account.


Sample Response

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


<?xml version="1.0" encoding="UTF-8" ?>
<response uri="/api/private/xml/tags/count">
<result>
    <tags>
        <ownerName>john</ownerName>
        <tagsCount>55</tagsCount>
    </tags>
</result>
</response>


Equivalent JSON response


{
    "response":
    {
        "uri": "/api/private/json/tags/count",
        "result":
        {
            "tags":
            {
                "ownerName":"john",
                "tagsCount":"55"
            }
        }
    }
}



Errors


Displaying count of number of tags for a user method may return general & input errors.
 


 RSS of this page