Forum Discussion
JMP99
Joining the Conversation
1 month agoI found the solution:
The timeFrame parameter should be a string (type TimeFrame!), not an object. The API expects a specific string format. According to the documentation, the timeFrame should be formatted as a UTC string like:
"utc.2023-02-{28/00:00:00--28/23:59:59}"
Or for relative time periods, use the format:
"last.P1D"
In order to fix it I changed it to:
"timeFrame": "last.P1D"