Passing date/time values
When you need to pass datetime to a method, it should be in one of the following formats:
- RFC 2822 (Thu, 21 Dec 2000 16:01:07 +0200), the day of week can be omitted (21 Dec 2000 16:01:07 +0200).
- ISO 8601 (2004-02-12T15:19:21+00:00) or part of it, any part after the year can be omitted, " " instead of "T" is supported).
- unix timestamp [TZ] (time zone is optional, default is UTC)
- YYYYMMDDhhmmss [TZ]
SOME text abbreviated timezones (e.g. EEST) are generally supported, but their use is discouraged.