Hi
I have a flow in my powerapp that runs at the very end of the patch statement while grabing last patched items ID and then flow is putting the files in a sharepoint list and associates it with that item ID. How do i check id the flow ran successfully and notify user on screen?
Here is my code:
ForAll(FileAttachments.Attachments,
SaveAttachments.Run(recID,
{
file: {
contentBytes:Value,
name: Name
}
}
)
);