Pular para o conteúdo

Get Timezone

GET
/api/v1/profile/timezone

Get user timezone configuration.

Returns the user’s configured timezone with additional information like label, offset, etc.

Successful Response

TimezoneResponse

Schema for timezone response.

object
timezone
required
Timezone
string
timezone_info
required
Timezone Info
object
Example
{
"timezone": "America/Sao_Paulo",
"timezone_info": {
"label": "Brasília (GMT-3)",
"name": "America/Sao_Paulo",
"offset": "-03:00",
"offset_seconds": -10800
}
}