Hi @dev4 lepide
If you are looking to get the Azure AD audit logs using Graph API, you can use Azure AD Activity reports.
- To list directory audits, use this
GET https://graph.microsoft.com/v1.0/auditLogs/directoryAudits
Graph API endpoint - To list sigIns, use this
GET https://graph.microsoft.com/v1.0/auditLogs/signIns
Graph API endpoint - To list provisioning, use this
GET https://graph.microsoft.com/v1.0/auditLogs/provisioning
Graph API endpoint
Please consent the respective permissions before running the above endpoints.
Hope this helps.
If the answer is helpful, please click Accept Answer and kindly upvote. If you have any further questions about this answer, please click Comment.