Skip to content

Commit ec1bdb7

Browse files
authored
Merge branch 'main' into uuf-conditionalAccessDevices
2 parents 23bf87b + fbd8b45 commit ec1bdb7

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

api-reference/beta/api/bitlocker-list-recoverykeys.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ author: "myra-ramdenbourg"
55
ms.localizationpriority: medium
66
ms.subservice: "entra-directory-management"
77
doc_type: apiPageType
8+
ms.date: 11/29/2024
89
---
910

1011
# List recoveryKeys
@@ -16,6 +17,8 @@ Get a list of the [bitlockerRecoveryKey](../resources/bitlockerrecoverykey.md) o
1617

1718
This operation does not return the **key** property. For information about how to read the **key** property, see [Get bitlockerRecoveryKey](bitlockerrecoverykey-get.md).
1819

20+
You can use this API to programmatically iterate through the list of recovery keys in the tenant and identify devices with BitLocker enabled. For more information, see the sample PowerShell code in [BitLocker recovery process](/windows/security/operating-system-security/data-protection/bitlocker/recovery-process#helpdesk-recovery-in-microsoft-entra-id).
21+
1922
[!INCLUDE [national-cloud-support](../../includes/all-clouds.md)]
2023

2124
## Permissions

api-reference/v1.0/api/bitlocker-list-recoverykeys.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ Get a list of the [bitlockerRecoveryKey](../resources/bitlockerrecoverykey.md) o
1616

1717
This operation does not return the **key** property. For information about how to read the **key** property, see [Get bitlockerRecoveryKey](bitlockerrecoverykey-get.md).
1818

19+
You can use this API to programmatically iterate through the list of recovery keys in the tenant and identify devices with BitLocker enabled. For more information, see the sample PowerShell code in [BitLocker recovery process](/windows/security/operating-system-security/data-protection/bitlocker/recovery-process#helpdesk-recovery-in-microsoft-entra-id).
20+
1921
[!INCLUDE [national-cloud-support](../../includes/all-clouds.md)]
2022

2123
## Permissions

concepts/filter-query-parameter.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -240,9 +240,9 @@ The following article demonstrates the syntax for using the `$filter` OData quer
240240

241241
| Operator | Syntax |
242242
|-------------------------|-------------------------------------------------------------------------------------------------------------------------------------|
243-
| `eq` | `~/users?$filter=userType eq 'Member'` |
243+
| `eq` | `~/users?$filter=userType eq 'Member'` <br><br> `~/groups?$filter=isAssignableToRole eq true` |
244244
| `not` | `~/users?$filter=not(userType eq 'Member')`<sup> [ ** ](#**) </sup> |
245-
| `ne` | `~/users?$filter=companyName ne null`<sup> [ ** ](#**) </sup> |
245+
| `ne` | `~/users?$filter=companyName ne null`<sup> [ ** ](#**) </sup> <br><br> `~/groups?$filter=isAssignableToRole ne true`<sup> [ ** ](#**) </sup> |
246246
| `startswith` | `~/users?$filter=startswith(userPrincipalName, 'admin')` |
247247
| `endswith` | `~/users?$filter=endswith(mail,'@outlook.com')`<sup> [ ** ](#**) </sup> |
248248
| `in` | `~/users?$filter=mail in ('mail1@domain.com', 'mail2@domain.com')` <br/><br/> **Note:** For query strings using `in` operator, the request is limited to 15 expressions in the filter clause by default or a URL length of 2,048 characters when using [advanced query capabilities](./aad-advanced-queries.md). |

0 commit comments

Comments
 (0)