Skip to main content

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!

 

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!


Reply