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

SerialNumber

StringThe serial number of this chassis.

PartNumber

StringThe part number of the chassis

ChassisType

StringThis property indicates the type of physical form factor of this resource, always set to “Enclosure”.

Description

StringProvides a description of this chassis resource.

Model

String“null”

Id

StringUniquely identifies the resource within the collection of Chassis. Always set to “3~{N}”.

Status

ObjectContains the following elements
 

State

String“Enabled”
 

Health

String“OK”

Name

StringThe name of the Chassis resource. Always set to “Chassis Enclosure”.

PowerState

String“null”

SKU

StringThe “SKU” of the chassis

Manufacturer

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