Get the timezone of a user account.
token (Required)https://www.easycron.com/rest/timezone?token=[token]
In above example, [token] should be replaced with the true token string.
{"status":"success","timezone":"Asia\/Hong_Kong"}
Above example response is equal to the following array:
Array
(
    [status] => success
    [timezone] => Asia/Hong_Kong
)
If you use an invalid token, you may receive following error response:
{"status":"error","error":{"code":"1","message":"Wrong API token."}}
The equal readable array is:
Array
(
    [status] => error
    [error] => Array
        (
            [code] => 1
            [message] => Wrong API token.
        )
)
If you make too much API requests in one day, you may receive following error:
code: 26
message: You have exceeded your max daily API request limit.