The "autoDownload": true option enables automatic downloading of a view’s data when entering TimeTonic.
It ensures offline availability: if Wi-Fi/4G is interrupted, the data remains accessible on the mobile device.
- Ideal for field teams, intervention forms, or any mobile use case requiring constant data refresh where connectivity may be unstable,
➡️ Add this line in your view’s JSON editor:
"autoDownload": true➜ the data is loaded automatically each time the workspace is entered from mobile."autoDownload": false➜ no action is performed automatically (the user must trigger the download manually).
ℹ️ This parameter is of type boolean, which means the only valid values are true (enabled) or false (disabled).
Point of attention
A large workspace may consume significant bandwidth for several minutes during the initial download.
Result on the mobile application (user side)
The user does not need to click “Refresh”; a message informs them that the download is running automatically in the app.
General reminders
- Values must comply with the specified types (bool, number, array, object).
- Do not put quotation marks around
true/false. - A valid JSON object always starts with
{and ends with}. - Each view can have its own configuration (settings are not global).