Skip to main content

Services Restart

This operation restarts services on a client

Request Body
  • action integer
  • client object
  • clientName string
  • services object
  • allServices boolean
Responses

OK


Schema
  • errorMessage string
  • errorCode integer
POST /services/action/restart    

Authorization

type: apiKeyname: Authtokenin: header

Request

Click Edit to configure Base URL
https://CommandCenterHostName/commandcenter/api
Security Scheme
token
Body

{
"action": 0,
"client": {
"clientName": "string"
},
"services": {
"allServices": true
}
}
curl -L -X POST 'https://CommandCenterHostName/commandcenter/api/Services/Action/Restart' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authtoken: <API_KEY_VALUE>' \
--data-raw '{
"action": 0,
"client": {
"clientName": "string"
},
"services": {
"allServices": true
}
}'