Hello,
Could you please share how can I access O365 Audit log search activities in Power Automate with access permission on O365 Audit log search?
Thanks,
D

Hello,
Could you please share how can I access O365 Audit log search activities in Power Automate with access permission on O365 Audit log search?
Thanks,
D
Hi @dave8,
This would be possible with the following three high-level steps:
1. Register an App in Azure AD, which has app permissions for the Office 365 Management API
2. Start an subscription for a specific content-type of the Audit Log (like Audit.General) via a HTTP Post request
https://manage.office.com/api/v1.0/@{variables('TenantId')}/activity/feed/subscriptions/start?contentType=@{variables('AuditLogContentType')}3. Retrieve the results back via another HTTP Get Request action
https://manage.office.com/api/v1.0/@{variables('TenantId')}/activity/feed/subscriptions/content?contentType=@{variables('AuditLogContentType')}&startTime=@{variables('StartTime')}&endTime=@{variables('EndTime')}
More details about this can be found in several sources. Below is one from Leon Armston:
Hope this helps a bit?