Time Zone Handling
VidiControl’s backend exclusively operates using UTC (Coordinated Universal Time). All timestamps sent to or received from the API must be provided in UTC format. This applies to all API requests and responses, including date filters, scheduling, and time-based data entries.
Please note that local time zone conversions are handled entirely in the frontend for user display purposes. Any localized time you see in the user interface is generated client-side for convenience, but it does not affect how data is stored or transmitted via the API.
To ensure consistency and avoid potential time-related issues, do not use local times or time zone offsets in API calls. All interactions with the backend must strictly adhere to UTC.
Examples
Correct:
"executionTime": "2025-05-20T14:00:00Z"
Incorrect:
"executionTime": "2025-05-20T16:00:00+02:00"