Hi Team,
I have a PowerApp that is converting an image to a Base64 string (just the string itself)
This is my code that I'm doing to do that:
Set (varHappyText, JSON(Image5_1.Image, JSONFormat.IncludeBinaryData));
Set (varBase64Only, Mid(varHappyText, Find(",",varHappyText)+1, Len(varHappyText) - Find (",", varHappyText)-2));
In my flow, i need to be able to put that into a word document and these are the steps I'm taking:

However, I am getting an error at the Create file step:
"The provided workflow action input is not valid."
Any tips, ideas?