Super Micro Computer · Example Payload

Supermicro Create Session Example

ServersData CenterHardwareServer ManagementRedfishBMCIPMIFortune 500InfrastructureCloud

Supermicro Create Session Example is an example object payload from Super Micro Computer, with 2 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

requestresponse

Example Payload

Raw ↑
{
  "request": {
    "method": "POST",
    "url": "https://192.168.1.100/redfish/v1/SessionService/Sessions",
    "headers": {
      "Content-Type": "application/json"
    },
    "body": {
      "UserName": "admin",
      "Password": "your-bmc-password"
    }
  },
  "response": {
    "status": 201,
    "headers": {
      "Content-Type": "application/json",
      "X-Auth-Token": "a6e5b2f8c43d1e7096f4b812a3c5d0e9",
      "Location": "/redfish/v1/SessionService/Sessions/7"
    },
    "body": {
      "@odata.type": "#Session.v1_0_0.Session",
      "@odata.id": "/redfish/v1/SessionService/Sessions/7",
      "Id": "7",
      "Name": "User Session",
      "UserName": "admin"
    }
  }
}