Hi all,
I have a form:

I want the data from this form to go into a sharepoint list which I have set up as name "Work Experience" and have connected the list to this app. I then want the dates and the data of this form to also go into the calendar of the person who is logged into this power app filling out the form.
Here is my on select for the button:
Patch('Work experience', Defaults('Work experience'),Form1.Updates);
If(
IsEmpty(Errors('Work experience')),
Office365Outlook.CalendarPostItem("Calendar", DataCardValue3.SelectedDate, DataCardValue2.SelectedDate, "Booking", DataCardValue1.Text, DataCardKey5.Text, DataCardValue6.Text, DataCardValue7.Text, DataCardValue8.Text
{Body:{contentBody:"", contentType:"text/plain"}})
)


Where am I going wrong/missing? Any ideas?
Thanks in advance!