| title | hardwarePasswordDetail resource type |
|---|---|
| description | Device BIOS password information for devices with managed BIOS and firmware configuration, which provides device serial number, list of previous passwords, and current password. |
| author | jaiprakashmb |
| ms.localizationpriority | medium |
| ms.subservice | intune |
| doc_type | resourcePageType |
| ms.date | 09/13/2024 |
Namespace: microsoft.graph
Important: Microsoft Graph APIs under the /beta version are subject to change; production use is not supported.
Note: The Microsoft Graph API for Intune requires an active Intune license for the tenant.
Device BIOS password information for devices with managed BIOS and firmware configuration, which provides device serial number, list of previous passwords, and current password.
| Method | Return Type | Description |
|---|---|---|
| List hardwarePasswordDetails | hardwarePasswordDetail collection | List properties and relationships of the hardwarePasswordDetail objects. |
| Get hardwarePasswordDetail | hardwarePasswordDetail | Read properties and relationships of the hardwarePasswordDetail object. |
| Create hardwarePasswordDetail | hardwarePasswordDetail | Create a new hardwarePasswordDetail object. |
| Delete hardwarePasswordDetail | None | Deletes a hardwarePasswordDetail. |
| Update hardwarePasswordDetail | hardwarePasswordDetail | Update the properties of a hardwarePasswordDetail object. |
| Property | Type | Description |
|---|---|---|
| id | String | The unique identifier for the managed device. This ID is assigned at enrollment time. This is different than the Entra device ID, this one is for the managedDevice object itself. Supports: $filter, $select, $top, $OrderBy, $skip. This property is read-only. |
| serialNumber | String | The device serial number as defined by the device manufacturer. Supports: $filter, $select, $top, $OrderBy, $skip. This property is read-only. |
| currentPassword | String | The current device's BIOS password. Supports: $filter, $select, $top, $OrderBy, $skip. This property is read-only. |
| previousPasswords | String collection | The list of all the previous device BIOS passwords. Supports: $filter, $select, $top, $skip. This property is read-only. |
None
Here is a JSON representation of the resource.
{
"@odata.type": "#microsoft.graph.hardwarePasswordDetail",
"id": "String (identifier)",
"serialNumber": "String",
"currentPassword": "String",
"previousPasswords": [
"String"
]
}