Hello,
I’m getting this error:
Timestamp must be in ISO-8601 (yyyy-mm-ddThh:mm:ss+zzzz) format, not: 2020-10-03T10:39:39 00:00
I’m making a query for the last tasks modified in 5 hours. The modified date in PHP that I’ve used is this:
$fromdate = ( new DateTime( ‘-5 hour’ ) )->format( ‘c’ );
But it gets the error mentioned before.
How could i make the date with ISO8601?
Thanks!