GET – Collection of Boot options
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
Field | Type | Description | ||||||
---|---|---|---|---|---|---|---|---|
Description | String | This resource is used to represent a single boot option for a Redfish implementation. | ||||||
Id | String | Id of boot option. | ||||||
Name | String | Name of the boot option. | ||||||
BootOptionReference | String | The unique boot option. | ||||||
DisplayName | String | The user-readable display name of the boot option that appears in the boot order list in the user interface. | ||||||
UefiDevicePath | String | The UEFI device path to access this UEFI Boot Option. |
Status code
HTTP Status Code | Error Message ID |
---|---|
500 | InternalError |
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."
}
Give documentation feedback