Skip to main content

GET – Retimer properties

Use the GET method to retrieve Retimer properties for Redfish service.

Request URL

GET https://<BMC_IPADDR>/redfish/v1/Chassis/Retimer_{CFF|Riser}{N}

Request body

None

Response body

FieldTypeDescription

Description

StringThis resource is used to represent a retimer riser for a Redfish implementation.

Id

String“Retimer_{CFF|Riser}_{N}”

Links

ObjectExpanded
 

ComputerSystems

ArrayItems: A reference link to an element of computer systems.
  

ComputerSystems[0]

LinkThe value of this property is a URI reference to a resource of the computer system.
 

ManagedBy

ArrayItems: A reference link to the managers responsible for managing this chassis
  

ManagedBy[0]

LinkThe value of this property is a URI reference to a resource of manager.

ChassisType

String“Card”

Manufacturer

StringThe manufacturer of this chassis

Model

Stringnull

Name

String“Retimer {CFF|Riser}{N}”

PartNumber

StringThe part number of the chassis.

SerialNumber

StringThe serial number of the chassis.

Status

ObjectExpanded
 

Health

String“OK”
 

State

String“Enabled”

Status code

HTTP Status CodeError Message ID
500InternalError

Example

The following example JSON response is returned:

{ 
"@odata.context": "/redfish/v1/$metadata#Chassis.Chassis",
"@odata.type": "#Chassis.v1_19_0.Chassis",
"@odata.id": "/redfish/v1/Chassis/Retimer_Riser_1",
"@odata.etag": "\"3cc36feb4fb72426d10\"",
"Status": {
"Health": "OK",
"State": "Enabled"
},
"Manufacturer": "Lenovo",
"Links": {
"ComputerSystems": [
{
"@odata.id": "/redfish/v1/Systems/1"
}
],
"ManagedBy": [
{
"@odata.id": "/redfish/v1/Managers/1"
}
]
},
"PartNumber": "",
"SerialNumber": "",
"Name": "Retimer Riser 1",
"Id": "Retimer_Riser_1",
"Description": "This resource is used to represent a retimer riser for a Redfish implementation.",
"ChassisType": "Card"
}