I’ve formatted a date on n8n to send to baserow but I can’t get it to work.
The import works when I try to send all fields other than this one.
So I guess that’s where the problem lies.
Does anyone know how I should format my date from n8n so that it is accepted on baserow?
Thanks ![]()
Also, if you have any documentation on all the formats that need to be taken into account for the different types of fields, I’d be interested.
Hi,
Baserow uses the ISO date format which is YYYY-MM-DD. You can use the JavaScript function toISOString() to get the date in the correct format.
If you only need the date without time or other information you can also use
{ $node["Name of the node"].json["start_date"].slice(0,10)}}
This takes the first 10 characters from a date which results in YYYY-MM-DD
Thanks a lot for your help, I will try with this ![]()