Skip to main content

Accept Anomaly Event Details For Multiple Clients

Endpoint for accepting anomaly event details for multiple client computers

Request Body required
  • anomalyDetections object[]
  • client object
  • hostName string

    Host name where the anomaly was detected

  • anomalyDetectedBy object
  • vendorName string

    The name of the vendor detecting the anomaly

  • anomalyDetails object[]
  • anomalyEvents object[]
  • detectionTime int64

    Unix timestamp of the event detection

  • eventId string

    Unique ID of the event

  • eventUrl string

    URL containing details of the event

  • anomalyReason string

    Details of the anomaly

  • detectionTime int64

    Unix timestamp of the anomaly detection

  • eventId string

    Unique ID of the event type

  • timesSeen integer

    Indicates the occurrence of the event

  • eventType string

    Type of event

  • additionalInfo object[]
  • dataType integer

    Type of additional data

  • name string

    Name of the additional data

  • value string

    Value of the additional data

Responses

Anomaly event details successfully accepted

PUT /client/action/report/bulk/anomaly    

Authorization

type: apiKeyname: Authtokenin: header

Request

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

{
"anomalyDetections": [
{
"client": {
"hostName": "string"
},
"anomalyDetectedBy": {
"vendorName": "string",
"anomalyDetails": [
{
"anomalyEvents": [
{
"detectionTime": 0,
"eventId": "string",
"eventUrl": "string"
}
],
"anomalyReason": "string",
"detectionTime": 0,
"eventId": "string",
"timesSeen": 0,
"eventType": "string",
"additionalInfo": [
{
"dataType": 0,
"name": "string",
"value": "string"
}
]
}
]
}
}
]
}
curl -L -X PUT 'https://CommandCenterHostName/commandcenter/api/Client/Action/Report/Bulk/Anomaly' \
-H 'Content-Type: application/json' \
-H 'Authtoken: <API_KEY_VALUE>' \
--data-raw '{
"anomalyDetections": [
{
"client": {
"hostName": "string"
},
"anomalyDetectedBy": {
"vendorName": "string",
"anomalyDetails": [
{
"anomalyEvents": [
{
"detectionTime": 0,
"eventId": "string",
"eventUrl": "string"
}
],
"anomalyReason": "string",
"detectionTime": 0,
"eventId": "string",
"timesSeen": 0,
"eventType": "string",
"additionalInfo": [
{
"dataType": 0,
"name": "string",
"value": "string"
}
]
}
]
}
}
]
}'