Skip to main content
Solved

UPDATE DATE FIELD TO BLANK - MAKE

  • June 7, 2023
  • 1 reply
  • 218 views

diretoria101

Hi Everyone!

How can I manage to update a date field to blank, using Make platform?

I´ve already tried using NULL, EMPTYSTRING, ERASE, etc, but no success… I always get Invalid Input

Thanks a lot for the help!

 

Best answer by Lucas Democh

Hello,

Make's default modules will not work.

To solve this problem, you need to use the "MAKE AN API CALL" module

In the module, fill in the query as below:

mutation {
  updateCardField (input:{
    card_id: 598261831, field_id: "data_da_realiza_o_da_reuni_o", 
    new_value: null
      }) {
    clientMutationId
    success
  }
}

Flow example:

 

 

The card ID can be a variable that comes from another MAKE module.

Good luck!

View original
Did this topic help you find an answer to your question?

1 reply

Lucas Democh
Forum|alt.badge.img+15
  • Pipefy Legend
  • 396 replies
  • Answer
  • June 7, 2023

Hello,

Make's default modules will not work.

To solve this problem, you need to use the "MAKE AN API CALL" module

In the module, fill in the query as below:

mutation {
  updateCardField (input:{
    card_id: 598261831, field_id: "data_da_realiza_o_da_reuni_o", 
    new_value: null
      }) {
    clientMutationId
    success
  }
}

Flow example:

 

 

The card ID can be a variable that comes from another MAKE module.

Good luck!


Cookie policy

We use cookies to enhance and personalize your experience. If you accept you agree to our full cookie policy. Learn more about our cookies.

 
Cookie settings