Skip to main content
Best answer

Remove due date in Trello

  • December 26, 2019
  • 2 replies
  • 533 views

Martinewski
Forum|alt.badge.img

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?


Best answer by PaulKortmanBest answer by PaulKortman

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.


View original
Did this topic help you find an answer to your question?
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

PaulKortman
Forum|alt.badge.img+10
  • Zapier Expert
  • 469 replies
  • Answer
  • December 26, 2019

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.



Martinewski
Forum|alt.badge.img
  • Author
  • Tinkerer
  • 11 replies
  • December 26, 2019

@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!