Hello,
I need your help.
I am developing a powerapps application.
I want to save a signature (Pen Input) in an existing SharePoint Record.
Code :
Collect(
ColCameraImages;
{
Id: GUID();
Value: PenInput_Signature.Image;
DisplayName: "SignatureValideur" & ".jpg";
AbsoluteUri: "";
Uri: ""
}
);;

How to add this collection (or image) as an attachment to an existing record.
With a submitform(Form1) or form1.update.
it doesn't work.
Can you help me.