Skip to main content

Repair software

Select

SaaS
Customer Managed

Repair software for client and clients for the given client group(s).

Request Body
  • rebootIfRequired boolean

    Default value: false

    Boolean which determines whether to reboot if required.

  • notifyWhenJobCompletes boolean

    Default value: false

    Boolean which determines whether to notify when software is repaired.

  • username string

    If using system credentials, provide the user name

  • password string

    Corresponding password of the user

  • entities object[] required

    List of all the client and client groups on which repair software should be run

  • id int32
  • name string
  • GUID string
  • type string
  • invokedFrom invokedFrom required

    Possible values: [NONE, COMMCELL, LIBRARY, MEDIA, DRIVE, CLIENT, MEDIAAGENT, CLIENTGROUP, PSEUDOCLIENT]

Responses

Success


Schema
  • jobId int32
PUT /v4/repairsoftware    

Authorization

type: apiKeyname: Authtokenin: header

Request

Click Edit to configure Base URL
https://CommandCenterHostName/commandcenter/api
Security Scheme
token
Body
{
"rebootIfRequired": false,
"notifyWhenJobCompletes": false,
"username": "string",
"password": "string",
"entities": [
{
"id": 0,
"name": "string",
"GUID": "string",
"type": "string"
}
],
"invokedFrom": "NONE"
}
curl -L -X PUT 'https://CommandCenterHostName/commandcenter/api/V4/RepairSoftware' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authtoken: <API_KEY_VALUE>' \
--data-raw '{
"rebootIfRequired": false,
"notifyWhenJobCompletes": false,
"username": "string",
"password": "string",
"entities": [
{
"id": 0,
"name": "string",
"GUID": "string",
"type": "string"
}
],
"invokedFrom": "NONE"
}'