Hi everyone,
I’m facing an issue with the Airtable Node in n8n when dealing with date fields.
- In some cases, the date field has a value and needs to be saved in Airtable.
- In other cases, the date field is empty or not provided – and that’s where the issue occurs.
If I send an empty string (
""
), it results in an error.
If I send
null
or undefined
, it still doesn’t work.
00.00.0000
is also invalid.
Expected behavior:
- If there is a valid date → Save it in Airtable.
- If the date is missing → The field should remain blank in Airtable without causing an error.
What is the best way to handle this in n8n?
Should I remove the field from the request dynamically? Or is there another workaround?
Thanks for any help!