I am trying to update card data on a board via this REST API. The “title”, “description” etc are updating successfully. But there’s an issue with updating the “date” to null/empty if there’s no date coming from the back-end. I have tried sending the null/undefined/empty date like this:
{"data":{"title": "updated title", "dueDate" :null, "description" :"updated description"}
Because I want to clear/remove the date on the card when I call the card item update API endpoint. But so far the existing date on the card still remains as it is.
Please do help on how the date on the card can be updated to null or cleared/removed.