Hey guys,
I´ve created an automation which creates an calendar event when I´m entering a special zone.
I call this service:
service: calendar.create_event
target:
entity_id: calendar.myCalendar
data:
summary: Work at Nordhorn
location: Nordhorn
start_date_time: "{{ now().strftime('%Y-%m-%d 9:00') }}"
end_date_time: "{{ now().strftime('%Y-%m-%d 14:00') }}"
This works great, but I want to create an whole day event. I´ve tested start_date_time and end_date_time without time, I`ve tested
start_date: "{{ now().strftime('%Y-%m-%d') }}"
and always run into an error.
Does anyone know, how the correct syntax is for an whole day event?
Thanks.