Hi @Anonymous ,
We can traverse the information contained in each item obtained by Get items in Apply to each.
Basically, when configuring Value is in Initialize variable action, the available Dynamic content is automatically displayed according to the Type you set.
For example, if you initialize an array variable, then only the value, as below:
If you want to get Title and other field value contained in the item and concat them to the value of the variable, you could set the type to String.
At this time, we need to use Apply to each and Set variable action, traversing the Body returned by Get items and assigning values to variables need to use Apply to each, but Initialize variable action cannot be done in Apply to each.
Expression:
tolower(concat(substring(item()?['Firstname'],0,1),item()?['Title']))
Another way to consider is to use Compose, as shown above.
Hope it helps.
Best Regards,