Skip to main content

Update GlobalExceptions

Select

SaaS
Customer Managed

Add/Edit/Delete global execptions

Request Body

Request body to be passed to the POST API

  • windowsGlobalExceptions object

    Information conatins the operation to be done on exceptions

  • operationType string

    Possible values: [NONE, OVERWRITE, ADD, DELETE, CLEAR]

    Default value: OVERWRITE

    The operations on global exceptions provided would be executed based on the operation type provided

  • exceptions string[]

    Array of exceptions which will be operated upon based on the operation type

  • unixGlobalExceptions object

    Information conatins the operation to be done on exceptions

  • operationType string

    Possible values: [NONE, OVERWRITE, ADD, DELETE, CLEAR]

    Default value: OVERWRITE

    The operations on global exceptions provided would be executed based on the operation type provided

  • exceptions string[]

    Array of exceptions which will be operated upon based on the operation type

  • useGlobalExceptionsOnAllSubclients boolean

    Boolean value which updates the property useGlobalExceptionsOnAllSubclients

Responses

OK


Schema
  • errorMessage string
  • errorCode int32
POST /v4/globalexceptions    

Authorization

type: apiKeyname: Authtokenin: header

Request

Click Edit to configure Base URL
https://CommandCenterHostName/commandcenter/api
Security Scheme
token
Body
{
"windowsGlobalExceptions": {
"operationType": "OVERWRITE",
"exceptions": [
"string"
]
},
"unixGlobalExceptions": {
"operationType": "OVERWRITE",
"exceptions": [
"string"
]
},
"useGlobalExceptionsOnAllSubclients": true
}
curl -L -X POST 'https://CommandCenterHostName/commandcenter/api/V4/GlobalExceptions' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authtoken: <API_KEY_VALUE>' \
--data-raw '{
"windowsGlobalExceptions": {
"operationType": "OVERWRITE",
"exceptions": [
"string"
]
},
"unixGlobalExceptions": {
"operationType": "OVERWRITE",
"exceptions": [
"string"
]
},
"useGlobalExceptionsOnAllSubclients": true
}'