Share Report with Power Automate
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Posted on 03-04-2023 11:51 AM
Hello everyone,
I want to send an "Advanced Computer Searches" result to another team using Power Automate.
Whatever I do, the email body doesn’t show the result I want “mac address”
Outlook result:
Any idea ?
1 REPLY 1

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-06-2023 10:04 AM - edited 03-06-2023 10:12 AM
you need to target the mac address specifically in this flow in order to pull it out from the entire JSON dump.
Here is an example expression you would use to grab just the Mac address in the "Initialize Variable" step in your flow
body('Parse_JSON')?['computer']?['general']?['mac_address']
