WebSphere Business Monitor, Version 6.2 Operating Systems: AIX, HP-UX, Linux, Solaris, Windows


Business Situation - Dynamic Business Situation Alert Configuration Resource - POST (X-METHOD-OVERRIDE=DELETE) Method

Use this method to delete all configuration settings for a dynamic business situation alert (including triggers and subscribed users). Requires the "ID" of the situation on the URI. Use the HTTP POST with a request header added of "X-METHOD-OVERRIDE:DELETE".

Resource URI

POST /situation/alerts/config/{ID}

Parameters

None.

Request Content

None.

Response Content

The response will contain the following.

The default content-type is application/json.

MIME Type: application/json

The following table lists all parameters in the JSON output:    

Parameter Name

Type

Description

ID

string

The ID of the dynamic alert that was deleted

 


+ View Schema
{ "description": "Dynamic Alert delete response", 
  "type": "object",
  "properties":
   {   
        "ID":{"type":"string",
         	"optional": false,
	        "description": "This is the ID of the dynamic alert that was deleted."}
             }
   }
   

}

Example content:

{"ID":"LoanAmount"}

Error Response Content

Detailed error information.

The default content-type is application/json.

MIME Type: application/json


+ View Schema
{ "description": "REST error response", 
  "type": "object",
  "properties":
   { "Status Code" : {"type":"integer"},
     "Error" : {"type":"string"},
   }
} 

Example content:

{
"Error":"CWMDS6127E: Unsupported URI",
"Status Code":404
}

Status Codes

The method returns one of the following status codes:
CodeDescription
200 OK
Successful completion - requested data returned. Note that the list may be empty.
404 Not Found
Resource not found or URL not supported.
400 Bad Request
The request contains invalid parameters or is missing parameters and inputs.
500 Internal Server Error
Internal error processing the request.

Available Since

6.2

Parent Topic: Dynamic Business Situation Alert Configuration Resource