GET – Collection of Power Supplies
Use the GET method to retrieve properties in power supply collection for Redfish service.
Request URL
GET https://<BMC_IPADDR>/redfish/v1/Chassis/1/PowerSubsystem/PowerSupplies
Request body
None
Response body
Field | Type | Description | ||
---|---|---|---|---|
Description | String | A collection of power supplies resource instances. | ||
Name | String | Power Supplies | ||
Members | Array | Items: A reference link to an element of power supplies. | ||
Members[N] | Link | Links to power supply instances. |
Status code
HTTP Status Code | Error Message ID |
---|---|
500 | InternalError |
Example
{
"@odata.context": "/redfish/v1/$metadata#PowerSupplyCollection.PowerSupplyCollection",
"@odata.etag": "\"F933E19D\"",
"@odata.id": "/redfish/v1/Chassis/1/PowerSubsystem/PowerSupplies",
"@odata.type": "#PowerSupplyCollection.PowerSupplyCollection",
"Description": "A collection of power supply resource instances.",
"Members": [
{
"@odata.id": "/redfish/v1/Chassis/1/PowerSubsystem/PowerSupplies/PSU1"
},
{
"@odata.id": "/redfish/v1/Chassis/1/PowerSubsystem/PowerSupplies/PSU2"
}
],
"Members@odata.count": 2,
"Name": "Power Supplies"
}
Give documentation feedback