User1535942433 posted
Hi krisrajz,
As far as I think,you try to trust the client passing dates to the server as little as possible. For example, if you need "now", don't create a date on the client and then pass it to the server.
Either create a date in your GET and pass it or on POST do DateTime.UtcNow.
Or,you could pass dates and timezone to the server.
More details,you could refer to below article:
https://stackoverflow.com/questions/7577389/how-to-elegantly-deal-with-timezones
Best regards,
Yijing Sun