Skip to main content

Retire Multiple Servers

Select

SaaS
Customer Managed

Retire multiple servers

Request Body
  • servers object[]
  • id int32
  • name string
Responses

OK


Schema
  • jobId int64
  • error object
  • errorCode int32
  • errorMessage string

    Tells about the error occured

  • warningCode int32
  • warningMessage string

    Tells about the warning occured

PUT /v4/servers/retire    

Authorization

type: apiKeyname: Authtokenin: header

Request

Click Edit to configure Base URL
https://CommandCenterHostName/commandcenter/api
Security Scheme
token
Body
{
"servers": [
{
"id": 0,
"name": "string"
}
]
}
curl -L -X PUT 'https://CommandCenterHostName/commandcenter/api/V4/Servers/Retire' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authtoken: <API_KEY_VALUE>' \
--data-raw '{
"servers": [
{
"id": 0,
"name": "string"
}
]
}'