Skip to content

Latest commit

 

History

History
25 lines (18 loc) · 604 Bytes

File metadata and controls

25 lines (18 loc) · 604 Bytes
description Automatically generated file. DO NOT MODIFY
// Code snippets are only available for the latest version. Current version is 5.x

// Dependencies
using Microsoft.Graph.Beta.AuditLogs.SignIns.Dismiss;

var requestBody = new DismissPostRequestBody
{
	RequestIds = new List<string>
	{
		"29f270bb-4d23-4f68-8a57-dc73dc0d4caf",
		"20f91ec9-d140-4d90-9cd9-f618587a1471",
	},
};

// To initialize your graphClient, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=csharp
await graphClient.AuditLogs.SignIns.Dismiss.PostAsync(requestBody);