Skip to main content
The Switch Timezone command (Command Type: 998) sets the timezone of the OS on the machine running the browser scraper.

Command Type

Command Type ID: 998

Parameters

ParameterTypeDescriptionRequired
ianaTimezonestringThe timezone to set in IANA format (e.g., "Europe/London", "Asia/Jerusalem")Yes
timeoutnumberTimeout in millisecondsYes

Usage Examples

Set Timezone to UTC

{
  "command": "switch-timezone",
  "params": {
    "ianaTimezone": "UTC",
    "timeout": 5000
  }
}

Set to Israel Time

{
  "command": "switch-timezone",
  "params": {
    "ianaTimezone": "Asia/Jerusalem",
    "timeout": 5000
  }
}