Skip to main content

GET – Boot options properties

Use the GET method to retrieve the properties of boot options for a server.

Request URL

GET https://<BMC_IPADDR>/redfish/v1/Systems/1/BootOptions/{Id}

Response body

FieldTypeDescription
DescriptionString

"This resource is used to represent a single boot option for a Redfish implementation.

IdString

Id of boot option.

NameString

Name of the boot option

BootOptionReferenceString

The unique boot option.

DisplayNameString

The user-readable display name of the boot option that appears in the boot order list in the user interface.

UefiDevicePathString

The UEFI device path to access this UEFI Boot Option.

Status code

HTTP Status CodeError Message ID
500InternalError

Example

The following example JSON response is returned:

{
"@odata.id": "/redfish/v1/Systems/1/BootOptions/Boot0001",
"BootOptionReference": "Boot0001",
"Name": "CD_DVDRom",
"UefiDevicePath": "VenHw_B2AD3248_4F72_4950_A966_CFE5062DB83A_02000000",
"@odata.type": "#BootOption.v1_0_3.BootOption",
"Id": "Boot0001",
"@odata.etag": "\"2cb45a4be77927e33d6\"",
"DisplayName": "CD_DVDRom",
"Description": "This resource shall be used to represent a single boot option contained within a system."
}