shlogg · Early preview
David Wyatt @wyattdavedev

Using Objects In Power Automate For Efficiency

Objects offer flexibility beyond single types & can store various data types like strings, integers, booleans & arrays. They're powerful & underused in Power Automate.

Everyone uses the string, boolean and integer variable, occasionally the float and array, but the object one is probably the least used. Yet I think it's the most powerful and one we all should be using.

In this blog I want to cover:

What is a object
How to use it
Working with them
Benefits



  
  
  1. What is a object

The object is based on json, and gives the flexibility far beyond a single type.

JSON (JavaScript Object Notation) is a lightweight data-interchange format. It is easy for humans to read and write. It is easy for machines to parse and generate.

The best way to think of an...