POST – Manager Instance Reset
Request
POST https://{{ip}}/redfish/v1/Managers/{{manager_instance}}/Actions/Manager.Reset
Content-Type: application/json
It provides non-disruptive BMC reset.
Name | type | Read only | Description |
ResetType | String | False | The BMC Reset type can be the following value: “ ForceRestart “, which will do a cold reset of the BMC. “ WarmReset “, which will do a wram reset of the BMC. |
Request body
{
"ResetType": "ForceRestart"
}
Response
The response status is 202 with the below body. Check BMC restarting logs in the BMC console and wait for a few seconds for BMC restarting.
For Error Responses, please refer to Error Response.
{
"@odata.context": "/redfish/v1/$metadata#Task.Task(TaskState,Description,Name,Id)",
"@odata.id": "/redfish/v1/TaskService/Tasks/1",
"@odata.type": "#Task.v1_2_0.Task",
"Description": "Task for ManagerReset",
"Id": "1",
"Name": "Manager Reset",
"TaskState": "New"
}
Give documentation feedback