Skip to main content

Change the Access Node for Hypervisor

Endpoint to Change the Access Node

Path Parameters
  • hypervisorId integer required

    Hypervisor ID to update the Access Node

Request Body
  • accessNode object
  • id int32
  • name string
Responses

OK

PUT /v4/hypervisor/:hypervisorid/accessnode    

Authorization

type: apiKeyname: Authtokenin: header

Request

Click Edit to configure Base URL
https://localhost/webconsole/api
token
hypervisorId — path required
Body
{
"accessNode": {
"id": 0,
"name": "string"
}
}
curl -L -X PUT 'https://localhost/webconsole/api/V4/Hypervisor/:hypervisorId/AccessNode' \
-H 'Content-Type: application/json' \
-H 'Authtoken: <API_KEY_VALUE>' \
--data-raw '{
"accessNode": {
"id": 0,
"name": "string"
}
}'