I am making a flow to move messages based on the text "Performance" within an email subject line. How do I define a Message Id: within the flow? It keeps throwing errors on the Message Id.
You want the id of the first matching email, correct?
If that is the case you need to retrieve the id field within value property. And you can use an index [0] for the first item.
Try the below:
%GetEmailsV3Response['value'][0]['id']%
Btw, if you want to move all matching items I would suggest to use a For each loop instead.
Was this reply helpful?YesNo
Under review
Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.