setTimeZone

Tags:  

setTimeZone.


Request URL:

                            XML : http://meeting.zoho.com/api/private/xml/meetings/setTimeZone?apikey=[APIKey]
&ticket=[Ticket]

                            JSON : http://meeting.zoho.com/api/private/json/meetings/setTimeZone?apikey=[APIKey]&ticket=[Ticket]


Request parameters


Field
Description

userTimeZone

Set this as the new timezone


Sample Form (POST Method)


<form method="POST"    action = "http://meeting.zoho.com/api/private/xml/setTimeZone?apikey=[APIKEY]&ticket=[Ticket]">

<input type="hidden" name="userTimeZone" value="Asia/Calcutta">


<input type="submit" Value="Set Time Zone">

</form>



Response fields


Field
Description
timeZone
Confirmation message - New Timezone is set


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/meetings/setTimeZone">
<result>
  <meeting>
    <timezone>New Timezone is set</timezone> 
    </meeting>
</result>
</response>


Equivalent JSON response

{
    "response":
    {
        "uri":"/api/private/json/meetings/setTimeZone",
        "result":
        {
            "meeting":
            {
                "timezone":"New Timezone is set"
             }
        }
    }
}

 


 RSS of this page