Using the REST API, I have no issues creating and updating task items in Todoist. However, I can't seem to remove a due date completely from an item.
This works for setting the due date:
{"due_date":"2020-01-20"}
I have tried the following for removing it with no luck.
{"due_string":"null"}
{"due_string":null}
{"due":{"date": null }}
{"due":{"string": null }}
{"due":null}
{"due":"null"}
How can I accomplish this?