This is not out of the box, as raylu indicated in the source code . But if you also look at the source code and documentation for the REST API , you can pass time as an argument to track , which allows you to make sure the timestamps are correct (as an improvement to Henry's answer).
If you look for MixpanelLib.prototype.track in JS, you can see that it does not change the time, and if you look at the REST API documentation, they will say in particular:
time is the time at which the event occurred, it must be a unix timestamp, requests will be rejected that are 5 days older than the time specified in the code - this is done for security reasons, since your token is publicly available. The format is seconds since 1970, the time zone is GMT. If you want to import data, you can use a special API for any event.
source share