Get timezone list for a specific country/region.
POST/api/v1/mobile/timezoneList| Parameter | Type | Required | Description |
|---|---|---|---|
| iso | string | Yes | Country code. Must conform to the ISO 3166-1 alpha-2 format. For example: China CN; United States US; Russia RU; Brazil BR, etc. For a complete list of country codes, please refer to the ISO 3166 Country Codes List |
{
"iso": "GB"
}
{
"code": 200,
"data": [
{
"id": "Europe/London", // Timezone
"name": "Europe/London(GMT+01:00)" // Name
}
],
"message": "Success"
}