Hey everyone,
I am new to power apps. I am currently playing around with it for work as we are wanting to build a solution that allows our servicemen to conduct a pump service and then automatically create a report. Currently I have a list setup in sharepoint and have Power Apps writing to the list other than the image. When a pump comes in, our servicemen will need to take a photo of it. I have a new job form(screen) in the app that has a add image component. When I try and use the patch function, I am getting an error "This type of argument "ArrivalPhoto" does not match the expected type "Record." Found Type Text".
Below is a screenshot of the current app with the box descriptions. 
This is the Save button patch function
Patch('Maintenance Tasks', Defaults('Maintenance Tasks'),
{JobNumber: JobNumberInput.Text,
ArrivalDate: ArrivalDateInput.SelectedDate,
CustomerName: CustomerNameInput.Text,
CustomerAddress: CustomerAddressInput.Text,
CustomerContactName:CustomerContactInput.Text,
ArrivalPhoto: AddArrivalImageButton.Media,
PumpBrand: PumpBrandInput.Text,
PumpModel: PumpModelInput.Text,
PumpSerialNumber:PumpSerialNumberInput.Text
}
)
Can anyone shed any light on what I might be doing wrong. The column in sharepoint that it is pointing to is definitely a image column.
Reagrds,
Sam