Hello,
since 10.8.2022 we have noticed receiving ‘Invalid date format’ error response in attempts of creating filters via API. We haven’t changed the way we create filters and it worked until 10th of august.
We were creating it like this
'{ "name": "_CT_temp_****", "type": "deals", "conditions": { "glue": "and", "conditions": [ { "glue": "and", "conditions": [{ "object": "deal", "field_id": "***", "operator": ">=", "value": "2022-08-23T13:46:11Z", "extra_value": null }] },{ "glue":"or", "conditions": [] } ] } }'
which started to lead to this error
"error": "value: Invalid date format: 2022-08-23T13:46:11Z",
we implemented a workaround specifying just date in the filter without specific time like this
"value": "2022-08-07"
that works, but the fact that we’re not able to specify update time causes us additional issues.
I’d like to ask whether this is a known issue, or intended change in the api ?
Thank you.