Get Delivery Methods

get

/bcws/webresources/v1.0/notificationManagement/deliveryMethod

Gets the notification delivery methods that match the specified query criteria.

Request

Query Parameters

There's no request body for this operation.

Back to Top

Response

Supported Media Types

200 Response

The delivery method information was returned successfully.
Body ()
Root Schema : schema
Type: array
Show Source
Nested Schema : deliveryMethod
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 delivery methods 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/deliveryMethod'

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.

[
    {
        "id": "1",
        "name": "IVR",
        "status": "ACTIVE"
    },
    {
        "id": "2",
        "name": "SMS",
        "status": "ACTIVE"
    },
    {
        "id": "3",
        "name": "EMAIL",
        "status": "ACTIVE"
    },
    {
        "id": "4",
        "name": "Twitter",
        "status": "ACTIVE"
    }
]
Back to Top