Get Notification Events

get

/bcws/webresources/v1.0/notificationManagement/notificationEvent

Gets the notification events that match the specified query criteria.

Request

Query Parameters
  • The name of the notificationevent, for example /event/customer/actginfo

There's no request body for this operation.

Back to Top

Response

Supported Media Types

200 Response

The notification event information was returned successfully.
Body ()
Root Schema : schema
Type: array
Show Source
Nested Schema : notificationEvent
Type: object
Show Source

500 Response

An error occurred. An exception has been raised.
Back to Top

Examples

This example shows how to get all notification events by submitting a GET request on the REST resource using cURL. For more information about cURL, see "Use cURL".

cURL Command

curl -X GET 'http://hostname:port/bcws/webresources/version/notificationManagement/notificationEvent'

where:

  • hostname is the URL for the Billing Care REST server.
  • port is the port for the Billing Care REST server.
  • version is the version of the API you're using, such as v1.0.

Example of Response Body

This example shows the contents of the response body in JSON format.

[
    {
        "eventName": "CustCreate"
    },
    {
        "eventName": "CustDelete"
    },
    {
        "eventName": "CustModify"
    }
 ]
Back to Top