GET – Storage Backplanes or Other Physical Enclosure properties
Request URL
GET https://<BMC_IPADDR>/redfish/v1/Chassis/{3..N}
Request body
None
Response body
The response is a JSON object that contains the following parameters:
Field | Type | Description | |||
---|---|---|---|---|---|
SerialNumber | String | The serial number of this chassis. | |||
PartNumber | String | The part number of the chassis | |||
ChassisType | String | This property indicates the type of physical form factor of this resource, always set to “Enclosure”. | |||
Description | String | Provides a description of this chassis resource. | |||
Model | String | “null” | |||
Id | String | Uniquely identifies the resource within the collection of Chassis. Always set to “3~{N}”. | |||
Status | Object | Contains the following elements | |||
State | String | “Enabled” | |||
Health | String | “OK” | |||
Name | String | The name of the Chassis resource. Always set to “Chassis Enclosure”. | |||
PowerState | String | “null” | |||
SKU | String | The “SKU” of the chassis | |||
Manufacturer | String | The manufacturer of this chassis. Always set to “Lenovo” or “LNVO”. |
Status code
HTTP Status Code | Error Message ID |
---|---|
500 | InternalError |
Example
The following example JSON response is returned:
{
"@odata.context": "/redfish/v1/$metadata#Chassis.Chassis",
"Oem": {
"Lenovo": {
"VPD_ID": "0070",
"@odata.type": "#LenovoChassis.v1_0_0.LenovoChassisProperties",
"PRODUCT_ID": "0000",
"Device_ID": "53",
"Entity_ID": "0f",
"POS_ID": "0090"
}
},
"Status": {
"State": "Enabled",
"Health": "OK"
},
"@odata.id": "/redfish/v1/Chassis/3",
"SerialNumber": "R1SH0CN0016",
"@odata.type": "#Chassis.v1_19_0.Chassis",
"Id": "3",
"Manufacturer": "LNVO",
"@odata.etag": "\"49f350a2b70c2667e6d\"",
"PartNumber": "SC57A26298",
"Model": null,
"Name": "HDD_BP_1",
"ChassisType": "Enclosure",
"PowerState": null,
"SKU": "02YE087",
"Description": "This resource is used to represent a chassis or other physical enclosure for a Redfish implementation."
}
Give documentation feedback