
Hi everybody,
i have a power app with a power automate flow triggered by powerapps V2. Such flow takes a text and a file as input and i run it with this expression (as i've always done):
sign.Run(Signed; {file:{name: First(attach3.Attachments).Name; contentBytes: First(attach3.Attachments).Value}})
where signed is a text variable and the rest takes the content and the name from an attachment control.
My problem is that, even if I use the same expression i've always used for other apps, this time there's an error:
"missing column. your formula is missing a column 'contentBytes' with a type of Blob"
What can i do?