Skip to main content
Alvys primarily uses two formats for handling date-time values in its system:
  • Standard Timestamps (UTC-based):
    • Stored in ISO 8601 compliant RFC 3339 format using DateTimeOffset objects.
    • Always returned in Coordinated Universal Time (UTC).
  • Localized Timestamps for Specific Use Cases
    • In some instances, such as location normalization, timestamps are returned in the local stop time of the event.
    • These timestamps include the appropriate timezone offsets to maintain accuracy.

Examples of Date Time Conversions

NoteThe examples below will be in Python3 programming language, please install the following dependencies before executing the functions.pytz
dateutil
datetime
The function below will convert the date-time in RFC 3339 format to the specified timezone.
Function Usage: convert\_timezone('2025-01-27T07:06:25Z', 'US/Eastern')