getNotification

get

/ccadmin/v1/notificationMessages/{id}

Get Notification. Get the notification.

Request

Supported Media Types
  • application/json
Path Parameters
id
Type: string
Required: true
Id of notification.

Response

Supported Media Types
  • application/json
200 Response
Following model is returned when operation succeeds.
Body
Root Schema : getNotification_response
Example application/json

{
    "viewedDate":null,
    "rolledUp":false,
    "pinned":false,
    "createdDate":"2016-10-19T19:46:11.754Z",
    "count":1,
    "details":"{\"Type\":\"test\",\"rate\":2.55,\"http code\":500,\"Date\":\"2016-10-19T19:46:11.753Z\"}",
    "links":[
        {
            "rel":"self",
            "href":"http://localhost:9080/ccadminui/v1/notificationMessages/931269"
        }
    ],
    "id":"931269",
    "message":"This is Failing",
    "key":"test"
}
Default Response
The error response
Body
Root Schema : errorModel
Type: object
Nested Schema : errors
Type: array
An optional list of errors if multiple errors were encountered
Nested Schema : items
Type: object

Examples

Sample Response Payload returned by endpoint:

{
  "viewedDate": null,
  "rolledUp": false,
  "pinned": false,
  "createdDate": "2016-10-19T19:46:11.754Z",
  "count": 1,
  "details": "{\"Type\":\"test\",\"rate\":2.55,\"http code\":500,\"Date\":\"2016-10-19T19:46:11.753Z\"}",
  "links": [{
    "rel": "self",
    "href": "http://localhost:9080/ccadminui/v1/notificationMessages/931269"
  }],
  "id": "931269",
  "message": "This is Failing",
  "key": "test"
}