Items in Power Automate
Meaning of items() in Power Automate In Power Automate, items() is a function that represents the current item being processed inside a loop , such as an Apply to each action. Think of it like this 👇 If you have a list of rows and Power Automate loops through them one by one — items() refers to the single row currently being processed. 🧩 Example Suppose: Your “List rows” ( List_rows_1 ) returns: { "body" : { "value" : [ { "fullname" : "John Doe" , "emailaddress1" : "john@contoso.com" } , { "fullname" : "Jane Smith" , "emailaddress1" : "jane@contoso.com" } ] } } You then add an Apply to each action: Apply to each: value = outputs ( 'List_rows_1' )?[ 'body/value' ] Inside this loop: On the first iteration , items() = { "fullname" : "John Doe" , "emailaddress1" : ...