diff --git a/api-reference/beta/resources/signin.md b/api-reference/beta/resources/signin.md index 1cc265fe6f6..5d9d01a0d81 100644 --- a/api-reference/beta/resources/signin.md +++ b/api-reference/beta/resources/signin.md @@ -96,7 +96,7 @@ The [Microsoft Entra data retention policies](/azure/active-directory/reports-mo |servicePrincipalId|String|The application identifier used for sign-in. This field is populated when you're signing in using an application.

Supports `$filter` (`eq`, `startsWith`).| |servicePrincipalName|String|The application name used for sign-in. This field is populated when you're signing in using an application.

Supports `$filter` (`eq`, `startsWith`).| |sessionLifetimePolicies|[sessionLifetimePolicy](sessionlifetimepolicy.md) collection|Any conditional access session management policies that were applied during the sign-in event.| -|signInEventTypes|String collection|Indicates the category of sign in that the event represents. For user sign ins, the category can be `interactiveUser` or `nonInteractiveUser` and corresponds to the value for the **isInteractive** property on the signin resource. For managed identity sign ins, the category is `managedIdentity`. For service principal sign-ins, the category is **servicePrincipal**. The possible values are: `interactiveUser`, `nonInteractiveUser`, `servicePrincipal`, `managedIdentity`, `unknownFutureValue`.

Supports `$filter` (`eq`, `ne`).

**NOTE:** Only interactive sign-ins are returned unless you set an explicit filter. For example, the filter for getting non-interactive sign-ins is `https://graph.microsoft.com/beta/auditLogs/signIns?&$filter=signInEventTypes/any(t: t eq 'nonInteractiveUser')`.| +|signInEventTypes|String collection|Indicates the category of sign in that the event represents. For user sign ins, the category can be `interactiveUser` or `nonInteractiveUser` and corresponds to the value for the **isInteractive** property on the signin resource. For managed identity sign ins, the category is `managedIdentity`. For service principal sign-ins, the category is **servicePrincipal**. The possible values are: `interactiveUser`, `nonInteractiveUser`, `servicePrincipal`, `managedIdentity`, `unknownFutureValue`.

Supports `$filter` (`eq`, `ne`).

**NOTE:** Only interactive sign-ins are returned unless you set an explicit filter. For example, the filter for getting non-interactive sign-ins is `https://graph.microsoft.com/beta/auditLogs/signIns?&$filter=signInEventTypes/any(t: t eq 'nonInteractiveUser')`. You can also get both interactive and non-interactive sign-ins using the filter `signInEventTypes/any(t: t eq 'interactiveUser' or t eq 'noninteractiveUser')`. However, the filter for getting both user and service principal sign-in even types is not supported.| |sessionId|String|Identifier of the session that was generated during the sign-in.| |signInIdentifier|String|The identification that the user provided to sign in. It can be the userPrincipalName, but is also populated when a user signs in using other identifiers.| |signInIdentifierType|signInIdentifierType|The type of sign in identifier. The possible values are: `userPrincipalName`, `phoneNumber`, `proxyAddress`, `qrCode`, `onPremisesUserPrincipalName`, `unknownFutureValue`.|