GET – Collection of Network adapters
Use the GET method to retrieve properties in NetworkAdapter collection for Redfish service.
Request URL
GET https://<BMC_IPADDR>/redfish/v1/Chassis/1/NetworkAdapters
Request body
None
Response body
Field | Type | Description | |||
---|---|---|---|---|---|
Name | String | NetworkAdaptersCollection | |||
Members | Array | Items: A reference link to an element of NetworkAdapters. | |||
Description | String | A collection of NetworkAdapter resource instances. |
Status code
HTTP Status Code | Error Message ID |
---|---|
500 | InternalError |
Example
The following example JSON response is returned:
{
"@odata.context": "/redfish/v1/$metadata#NetworkAdapterCollection.NetworkAdapterCollection",
"@odata.etag": "\"BB7BA9DD\"",
"@odata.id": "/redfish/v1/Chassis/1/NetworkAdapters",
"@odata.type": "#NetworkAdapterCollection.NetworkAdapterCollection",
"Description": "Collection of Network Adapter",
"Members": [
{
"@odata.id": "/redfish/v1/Chassis/1/NetworkAdapters/slot3_0xb0000"
},
{
"@odata.id": "/redfish/v1/Chassis/1/NetworkAdapters/slot14_0xb40000"
}
],
"Members@odata.count": 2,
"Name": "Network Adapter Collection"
}
Give documentation feedback