Answered
I need some assistance figuring out the format for the start and end dates when calling the "getuseractivity" api.
I've tried the following:
getuseractivity&userid=<userid>&startdate='2017-01-01T00:00:00.000Z'&enddate='2017-07-26T00:00:00.000Z'
getuseractivity&userid=<userid>&startdate='2017-01-01 00:00:00'&enddate='2017-07-26 00:00:00'
getuseractivity&userid=<userid>&startdate='2017-01-0100:00:00'&enddate='2017-07-2600:00:00'
getuseractivity&userid=<userid>&startdate='2017-01-01'&enddate='2017-07-26'
Thanks.
Comments (2)
Your first example is the closest, but drop the quotation marks.
Also, if you don't care about the hours/minutes, you can omit them. For example:
Thanks!