Question

How to set TimeZone thru API?

  • 3 August 2018
  • 1 reply
  • 292 views

I was looking thru the API for how to set timezone and cannot find it. Please correct me if/when I am wrong... is there not a way to set the timezone thru the API?


1 reply

You can update this via the update extension settings API:

PUT /restapi/v1.0/account/~/extension/~ {     "regionalSettings": {         "timezone": {             "id": 58         }     } }

You can get the supported timezone ids from the timezone endpoint:

GET /restapi/v1.0/dictionary/timezone

I have a post with some more information on how to do this here:

https://stackoverflow.com/questions/51681789/is-it-possible-to-set-a-users-ringcentral-timezone-thro...

Reply