Reputation: 321
Submitting a query like q=lastModifiedDate ON_OR_AFTER "15/01/2021" works as expected, but a query like q=lastModifiedDate ON_OR_AFTER "2021-01-15T11:11:00Z" gives the 400 error
Upvotes: 0
Views: 688
Reputation: 11
You can also pass a full SQL SELECT statement which you can control the date and timestamp formats like this:
Problems querying items using lastmodifed in SuiteQL
In SuiteSQL you have to use to_date or to_timestamp to convert your date/time string into the proper object type in the underlying Oracle database.
Upvotes: 0