I broke my New Form some how.
All data is coming through, however the images taken with the camera as part of the form - which are siloed as attachments in the New Form, are not showing up in the SP List.
I have tried both of the below; again, I get all the form data just not the images as attachments in the list.
DataCardValue14 (Form11 attachment control) is on a separate screen.
Patch('Scheduler Details List',
Defaults('Scheduler Details List'),
{Title: User().FullName,
CustomerName: DataCardValue25.Text,
PhoneNumber: DataCardValue9.Text,
JobDescription: DataCardValue13_1.Text,
DateArrived: Value(DataCardValue10_1.SelectedDate),
Mileage: Value(DataCardValue17.Text),
ConcernsObservations: DataCardValue24.Text,
Attachments: (DataCardValue14)});
SubmitForm(NewJobForm);
Form11.Updates