Get the Time Zone of the specific user.
Request URL:
XML :
http://meeting.zoho.com/api/private/xml/meetings/getTimeZone?apikey=[APIKey]&ticket=[Ticket]
JSON :
http://meeting.zoho.com/api/private/json/meetings/getTimeZone?apikey=[APIKey]&ticket=[Ticket]
Request parameters
Field
|
Description
|
|
offsetHr [ optional ]
|
The timezone corresponding to this
offset is set to the user if timezone is not already set for the
user. |
Response fields
Field
|
Description
|
timezone
|
Time Zone of the user
|
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/getTimeZone">
<result>
<meeting>
<timezone>Asia/Calcutta</timezone>
</meeting>
</result>
</response>
Equivalent JSON response
{
"response":
{
"uri": "/api/private/xml/meetings/getTimeZone",
"result":
{
"meeting":
{
"timezone":"Asia/Calcutta",
}
}
}
}