Best answer

Remove due date in Trello

  • 26 December 2019
  • 2 replies
  • 403 views

Userlevel 3
Badge

The Due Date field in the Update Card action in Zapier is a date/time field, but I want to act on the due date removing it entirely from the card or marking as complete. Any ideas?


icon

Best answer by PaulKortman 26 December 2019, 21:11

View original

This post has been closed for comments. Please create a new post if you need help or have a question about this topic.

2 replies

Userlevel 7
Badge +10

Try putting "null" as the due date ... although I assume Zapier's date field will not allow that.

If that's true you cannot remove the due date with the native Trello Zapier Integration.

You can do this with a webhook call to Trello however. see https://developers.trello.com/reference/#cardsid-1

The webhook should be a PUT to https://api.trello.com/1/cards/id?key=yourApiKey&token=yourApiToken&due=null&dueComplete=true

You will need to replace id, yourApiKey, and yourApiToken in that URL with the ID of the card, and your API credentials from Trello.


Userlevel 3
Badge

@PaulKortman I tried using null as a value and it didn't work, so I had to go the webhook way. It's working. Thanks!