Solved

UPDATE DATE FIELD TO BLANK - MAKE

  • 7 June 2023
  • 1 reply
  • 121 views

Userlevel 3

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!

 

icon

Best answer by Lucas Democh 7 June 2023, 19:03

View original

1 reply

Userlevel 7
Badge +15

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