Retrieve Alerts

get

/OracleBAMREST/api/projects/{projectname}/alerts

Retrieves list of alerts pertaining to Project.

Request

There are no request parameters for this operation.

Back to Top

Response

Supported Media Types

200 Response

Success
Body
Example Response (application/json)
{
    "items":[
        {
            "id":"/project/BAMFramework/alert/ASN_KPI_SLAViolation_Email_Alerting_HIGH_Alert",
            "name":"ASN_KPI_SLAViolation_Email_Alerting_HIGH_Alert",
            "displayName":"ASN_KPI_SLAViolation_Email_Alerting_HIGH_Alert",
            "links":[
                {
                    "rel":"self",
                    "href":"http://example.com:7001/OracleBAMREST/api/projects/BAMFramework/alerts/ASN_KPI_SLAViolation_Email_Alerting_HIGH_Alert"
                }
            ]
        },
        {
            "id":"/project/BAMFramework/alert/KPI_Purging_Email_CommonAudit_HIGH_Alert",
            "name":"KPI_Purging_Email_CommonAudit_HIGH_Alert",
            "displayName":"KPI_Purging_Email_CommonAudit_HIGH_Alert",
            "links":[
                {
                    "rel":"self",
                    "href":"http://example.com:7001/OracleBAMREST/api/projects/BAMFramework/alerts/KPI_Purging_Email_CommonAudit_HIGH_Alert"
                }
            ]
        }
    ],
    "links":[
        {
            "rel":"self",
            "href":"http://example.com:7001/OracleBAMREST/api/projects/BAMFramework/alerts"
        }
    ]
}
Back to Top