I can't get the camera control gallery images within my PowerApp to save as attachments in SharePoint list. I also receive this error "Network error when using Patch function: Field ID is required"

I've built an inspection app and I keep receiving this error: "Network error when using Patch function: Field ID is required". In addition - the photos within my gallery won't show under attachments within my app or my list.

 

My camera 2 has this code:

 

Set(
    varName,
    GUID()
);
Collect(
    colcamera2images,
    {
        DisplayName: varName & ".jpg",
        ID: varName & ".jpg",
        Value: Camera2.Photo
    }
);

 

My attachment card has the Default and Update as colcamera2images.

 

What am I doing wrong??