JSON Data Handling in Power Automate: outputs versus body
JSON Data Handling in Power Automate : outputs versus body
In Power Automate, JSON data output from various actions is key to connect each other.
Accessing Action Outputs
Accessing the outputs of a specific action, such as the action ‘Get file properties’, the spcific property can be accessed via the outputs, for instance file name with extension.:
outputs(‘Get_file_properties’)?[‘body/{FilenameWithExtension}’]
Referencing Action Body
A streamlined way is to reference the body directly making it simpler.
body(‘Get_file_properties’)?[’{FilenameWithExtension}’]