GET – Collection of Fans
Use the GET method to retrieve properties in fan collection for Redfish service.
Request URL
GET https://<BMC_IPADDR>/redfish/v1/Chassis/1/ThermalSubsystem/Fans
Request body
None
Response body
Field | Type | Description | ||
---|---|---|---|---|
Name | String | Fan Collection | ||
Description | String | A collection of fan resource instances. | ||
Members | Array | Items: A reference link to an element of fans. | ||
Members | Link | Links to the instances of Fan schema. |
Status code
HTTP Status Code | Error Message ID |
---|---|
500 | InternalError |
Example
{
"@odata.context": "/redfish/v1/$metadata#FanCollection.FanCollection",
"@odata.etag": "\"AD2BD759\"",
"@odata.id": "/redfish/v1/Chassis/1/ThermalSubsystem/Fans",
"@odata.type": "#FanCollection.FanCollection",
"Description": "A collection of fan resource instances.",
"Members": [
{
"@odata.id": "/redfish/v1/Chassis/1/ThermalSubsystem/Fans/fantach_Fan1_Front_Tach"
},
{
"@odata.id": "/redfish/v1/Chassis/1/ThermalSubsystem/Fans/fantach_Fan2_Front_Tach"
},
{
"@odata.id": "/redfish/v1/Chassis/1/ThermalSubsystem/Fans/fantach_Fan1_Rear_Tach"
},
{
"@odata.id": "/redfish/v1/Chassis/1/ThermalSubsystem/Fans/fantach_Fan2_Rear_Tach"
}
],
"Members@odata.count": 12,
"Name": "Fan Collection"
}
Give documentation feedback