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
Response body
Field | Type | Description | ||||||
---|---|---|---|---|---|---|---|---|
Members | Array | Items: A reference link of the elements of boot options | ||||||
Name | String | BootOptions | ||||||
Description | String | A collection of boot option instances |
Status code
HTTP Status Code | Error Message ID |
---|---|
500 | InternalError |
Example
The following example JSON response is returned:
{
"Members": [
{
"@odata.id": "/redfish/v1/Systems/1/BootOptions/Boot0001"
},
{
"@odata.id": "/redfish/v1/Systems/1/BootOptions/Boot0002"
},
{
"@odata.id": "/redfish/v1/Systems/1/BootOptions/Boot0003"
},
{
"@odata.id": "/redfish/v1/Systems/1/BootOptions/Boot0004"
}
],
"@odata.type": "#BootOptionCollection.BootOptionCollection",
"@odata.id": "/redfish/v1/Systems/1/BootOptions",
"Name": "BootOptions",
"@odata.etag": "\"36cc1ba2c2b725a43e4\"",
"Members@odata.count": 4,
"Description": "A Collection of BootOption resource instances."
}
Give documentation feedback