Skip to main content

GET – Collection of Processors

Use the GET method to retrieve properties in Processor collection for Redfish service.

Request URL

GET https://<BMC_IPADDR>/redfish/v1/Systems/1/Processors

Request body

None

Response body

The response is a JSON object that contains the following parameters:

FieldTypeDescription

Name

String

“ProcessorCollection”

Members

Array

Items: A reference link to an element of processor resource.

Description

String

A Collection of Processor resource instances.

Status code

HTTP Status CodeError Message ID
500InternalError

Example

The following example JSON response is returned:

{
"Members": [
{
"@odata.id": "/redfish/v1/Systems/1/Processors/1"
},
{
"@odata.id": "/redfish/v1/Systems/1/Processors/2"
},
{
"@odata.id": "/redfish/v1/Systems/1/Processors/GPU1"
}
],
"Oem": {
"Lenovo": {
"HistoryCPUMetric": {
"@odata.id": "/redfish/v1/Systems/1/Processors/Oem/Lenovo/HistoryCPUMetric"
}
}
},
"@odata.type": "#ProcessorCollection.ProcessorCollection",
"@odata.id": "/redfish/v1/Systems/1/Processors",
"Name": "ProcessorCollection",
"@odata.etag": "\"3d6b38a53bed29662db\"",
"Members@odata.count": 3,
"Description": "A collection of Processor resource instances."
}