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


Alert - Dashboard Alert List Resource - POST Method

Use this URI to forward dashboard alerts to other users.

Resource URI

POST /alerts/dashboardalerts

Parameters

None.

Request Content

The default content-type is application/json.

MIME Type: application/json

The HTTP request can have a payload which contains parameters. The following table lists all input parameters that can be sent in the HTTP payload in JSON format.

Parameter Name

Type

Description

User ID

 string

The user ID to forward dashboard alerts to

IDS

array

Array of dashboard alerts to forward

 

ID

string

The ID of the dashboard alert

 


+ View Schema
{ "description": "Dashboard Alert input list", 
  "type": "object",
  "properties":
   {
	"User ID":{"type":"string"},
	"IDS":  
	[
     		"ID":{"type":"string"},
	]
  }
}

Example content:

{ 	
        "User ID":"bob",
        "IDS": 
        [
            {
                ID":"ABC123",
            }
            {
                ID":"ABC456",
            }
        ]
}

Response Content

None.

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"},
   }
} 

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.1

Parent Topic: Dashboard Alert List Resource