I have a flow where I am trying to parse a csv file. After I get the file content, I have a compose to split the content by lines. I keep getting the following error: InvalidTemplate. Unable to process template language expressions in action 'SplitByLines' inputs at line '0' and column '0': 'The template language function 'split' expects its first parameter to be of type string. The provided value is of type 'Object'. Please see https://aka.ms/logicexpressions#split for usage details.'.
My expression is:
split(outputs('Get_file_content')?['body'], decodeUriComponent('%0D%0A'))