> ## Documentation Index
> Fetch the complete documentation index at: https://docs.blinkops.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List Firmware Inventory

Get a list of available `Software Inventory` resource instances.

<Note>
  External Documentation

  To learn more, visit the [Dell iDRAC documentation](https://developer.dell.com/apis/2978/versions/7.xx/openapi.yaml/paths/~1redfish~1v1~1UpdateService~1FirmwareInventory/get).
</Note>

## Parameters

<div className="integrations-table">
  | Parameter      | Description                                                                                                                                                                                                                                                                                                                                                                                                                                    |
  | -------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | Expand Results | Optional Redfish expand  parameter to control how related resources <br />are expanded in the response. <br /><br />**Supported values:**<br />- `*($levels=N)` → Expand all navigation properties to `N` levels deep.<br />- `.($levels=N)` → Expand subordinate links (outside of "Links" objects) to `N` levels.<br />- `~($levels=N)` → Expand dependent links (inside `Links` objects) to `N` levels.<br />- Empty string → No expansion. |
</div>

## Example Output

```json theme={"dark"}
{
	"@odata.id": "/redfish/v1/UpdateService/FirmwareInventory",
	"@odata.type": "#SoftwareInventoryCollection.SoftwareInventoryCollection",
	"Members": [
		{
			"@odata.id": "/redfish/v1/UpdateService/FirmwareInventory/BMC",
			"@odata.type": "#SoftwareInventory.v1_10_1.SoftwareInventory",
			"AdditionalVersions": {
				"Bootloader": "v2022.01",
				"Kernel": "Linux 5.13.0-30-generic arm71",
				"Oem": {
					"Contoso": {
						"@odata.type": "#ContosoSoftwareInventory.v1_0_0.AdditionalVersions",
						"ManagementApp": "1.30"
					}
				}
			},
			"Id": "BMC",
			"LowestSupportedVersion": "1.30.367a12-rev1",
			"Manufacturer": "Contoso",
			"Name": "Contoso BMC Firmware",
			"RelatedItem": [
				{
					"@odata.id": "/redfish/v1/Managers/BMC"
				}
			],
			"ReleaseDate": "2017-08-22T12:00:00Z",
			"SoftwareId": "1624A9DF-5E13-47FC-874A-DF3AFF143089",
			"Status": {
				"Health": "OK",
				"State": "Enabled"
			},
			"UefiDevicePaths": [
				"BMC(0x1,0x0ABCDEF)"
			],
			"Updateable": true,
			"Version": "1.45.455b66-rev4"
		},
		{
			"@odata.id": "/redfish/v1/UpdateService/FirmwareInventory/SS",
			"@odata.type": "#SoftwareInventory.v1_10_1.SoftwareInventory",
			"Id": "SS",
			"LowestSupportedVersion": "2.30.rev1",
			"Manufacturer": "Contoso",
			"Name": "Contoso Simple Storage Firmware",
			"RelatedItem": [
				{
					"@odata.id": "/redfish/v1/Systems/437XR1138R2/SimpleStorage/1"
				}
			],
			"ReleaseDate": "2021-10-18T12:00:00Z",
			"Status": {
				"Health": "OK",
				"State": "Enabled"
			},
			"Updateable": true,
			"Version": "2.50"
		},
		{
			"@odata.id": "/redfish/v1/UpdateService/FirmwareInventory/BIOS",
			"@odata.type": "#SoftwareInventory.v1_10_1.SoftwareInventory",
			"Id": "BIOS",
			"LowestSupportedVersion": "P79 v1.10",
			"Manufacturer": "Contoso",
			"Name": "Contoso BIOS Firmware",
			"RelatedItem": [
				{
					"@odata.id": "/redfish/v1/Systems/437XR1138R2"
				}
			],
			"ReleaseDate": "2017-12-06T12:00:00Z",
			"SoftwareId": "FEE82A67-6CE2-4625-9F44-237AD2402C28",
			"Status": {
				"Health": "OK",
				"State": "Enabled"
			},
			"Updateable": true,
			"Version": "P79 v1.45"
		}
	],
	"Members@odata.count": 2,
	"Name": "Firmware Collection"
}
```

## Workflow Library Example

[List Firmware Inventory with Dell Idrac and Send Results Via Email](https://library.blinkops.com/workflows/list-firmware-inventory-with-dell-idrac-and-send-results-via-email)

<div className="iframe-wrapper">
  <div className="iframe-media">
    <img src="https://mintcdn.com/blinkops-2/ojHYuDeYX5FWuN8a/img/Icons/play-box.svg?fit=max&auto=format&n=ojHYuDeYX5FWuN8a&q=85&s=b8af968e71438a9499c3223c9bd29fb2" alt="Workflow Library" width="16" height="16" data-path="img/Icons/play-box.svg" />

    Preview this Workflow on desktop
  </div>

  <iframe className="iframe" src="https://library.blinkops.com/workflows/list-firmware-inventory-with-dell-idrac-and-send-results-via-email/canvas" />
</div>
