getDDoSEventDetail

Prev Next

Available in Classic and VPC

Get details of a security event that occurred while using the Anti-DDoS service.

Request

The following describes the request format for the endpoint. The request format is as follows:

Method URI
POST /getDDoSEventDetail

Request headers

For headers common to Security Monitoring APIs, see Security Monitoring request headers.

Request body

The following describes the request body.

Field Type Required Description
ticketId String Required Unique number of the DDoS security event to view

Request example

The following is a sample request.

curl --location --request POST 'https://securitymonitoring.apigw.ntruss.com/vsecuritymonitoring/v1/getDDoSEventDetail'
--header 'x-ncp-apigw-timestamp: {Timestamp}'
--header 'x-ncp-iam-access-key: {Access Key}' 
--header 'x-ncp-apigw-signature-v2: {API Gateway Signature}' 
--data '{
  "ticketId": "526426300"
}'

Response

The following describes the response format.

Response body

The following describes the response body.

Field Type Required Description
returnCode Integer - Processing result code for the request
lbName String - Name of the load balancer where the security event was detected
returnMessage String - Processing result message for the request
report String - Security event details
lbDomainName String - DNS name of the load balancer where the security event was detected
lbInstanceNo String - Instance number of the load balancer where the security event was detected

Response status codes

For error codes common to Security Monitoring APIs, see Common Security Monitoring error codes.

Response example

The following is a sample example.

{
    "returnCode": 0,
    "lbName": "YOUR_LOAD_BALANCER",
    "returnMessage": "SUCCESS",
    "report": "<div><br><h4>detection information</h4><br><p id=\"report\"><span>◆ detection information</span><br>- Time of occurrence: YYYY-MM-DD HH:MM:SS<br>- Attacker IP: *.*.*.*<br>- Destination IP: *.*.*.*<br>- Destination PORT: **<br></p><div>YOUR_EVENT_DETAIL</div><p></p>",
    "lbDomainName": "***.com",
    "lbInstanceNo": "********"
}