Skip to main content

GET – Collection of BMC serial interface

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

Request URL

GET https://<BMC_IPADDR>/redfish/v1/Managers/1/SerialInterfaces

Request body

None

Response body

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

FieldTypeDescription
NameString

“SerialInterfaceCollection”

MembersArray

Items: A reference link to an element of Serial Interface

Status code

HTTP Status CodeError Message ID
500InternalError

Response example

When the request is successful, a message body similar to the following is returned:

 {
"@odata.id": "/redfish/v1/Managers/1/SerialInterfaces",
"Members@odata.count": 1,
"@odata.context": "/redfish/v1/$metadata#SerialInterfaceCollection.SerialInterfaceCollection",
"Members": [
{
"@odata.id": "/redfish/v1/Managers/1/SerialInterfaces/1"
}
],
"@odata.type": "#SerialInterfaceCollection.SerialInterfaceCollection",
"@odata.etag": "\"ca33897145cbc4d601528e54e3b4ba97\"",
"Name": "SerialInterfaceCollection",
"Description": "A collection of SerialInterface resource instances."
}