Skip to content

Commit 1cf161b

Browse files
authored
Merge pull request #115703 from v-maudel/patch-505
M49307: Fixing typo lastSignInDate to lastSignInDateTime
2 parents 66dc3c5 + 9bba85c commit 1cf161b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/active-directory/reports-monitoring/howto-manage-inactive-user-accounts.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ The last successful sign-in provides potential insights into a user's continued
3939

4040
You detect inactive accounts by evaluating the **lastSignInDateTime** property exposed by the **signInActivity** resource type of the **Microsoft Graph** API. Using this property, you can implement a solution for the following scenarios:
4141

42-
- **Users by name**: In this scenario, you search for a specific user by name, which enables you to evaluate the lastSignInDate: `https://graph.microsoft.com/beta/users?$filter=startswith(displayName,'markvi')&$select=displayName,signInActivity`
42+
- **Users by name**: In this scenario, you search for a specific user by name, which enables you to evaluate the lastSignInDateTime: `https://graph.microsoft.com/beta/users?$filter=startswith(displayName,'markvi')&$select=displayName,signInActivity`
4343

4444
- **Users by date**: In this scenario, you request a list of users with a lastSignInDateTime before a specified date: `https://graph.microsoft.com/beta/users?filter=signInActivity/lastSignInDateTime le 2019-06-01T00:00:00Z`
4545

0 commit comments

Comments
 (0)