Skip to main content

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:

FieldTypeDescription
SerialNumberStringThe serial number of this chassis.
PartNumberStringThe part number of the chassis
ChassisTypeStringThis property indicates the type of physical form factor of this resource, always set to “Enclosure”.
DescriptionStringProvides a description of this chassis resource.
ModelString“null”
IdStringUniquely identifies the resource within the collection of Chassis. Always set to “3~{N}”.
StatusObjectContains the following elements
 StateString“Enabled”
 HealthString“OK”
NameStringThe name of the Chassis resource. Always set to “Chassis Enclosure”.
PowerStateString“null”
SKUStringThe “SKU” of the chassis
ManufacturerStringThe manufacturer of this chassis. Always set to “Lenovo” or “LNVO”.

Status code

HTTP Status CodeError Message ID
500InternalError

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."
}