Get notification by notification ID

Retrieve a Notification using notification ID. The notification summary and details are populated with data

Request
Security:
vc-security
path Parameters
notificationId
required
string
Responses
200

A notification object

401

Unauthorized request

404

Not Found. The specified resource (or resource referred to by id) was not found

get/notification-service/v1/notification/{notificationId}
Request samples
curl -i -X GET \
  'http://notification-service:8080/notification-service/v1/notification/{notificationId}' \
  -H 'x-auth-token: YOUR_API_KEY_HERE'
Response samples
application/json
{
  • "id": "string",
  • "sender": "string",
  • "recipients": [
    ],
  • "rawRecipient": "string",
  • "type": "EMAIL",
  • "eventKey": "string",
  • "productName": "string",
  • "tags": [
    ],
  • "language": "string",
  • "summary": "string",
  • "details": "string",
  • "shortSubject": "string",
  • "shortDescription": "string",
  • "templateNameKey": "string",
  • "dataModel": {
    },
  • "status": "CREATED",
  • "messageId": "string",
  • "responseCode": 0,
  • "responseMsg": "string",
  • "userOrgId": "string",
  • "emailForPreference": "string",
  • "attachmentContent": "string",
  • "attachmentMimeType": "string",
  • "attachmentFilename": "string",
  • "createdBy": "string",
  • "createdInstant": "2019-08-24T14:15:22Z",
  • "lastUpdatedBy": "string",
  • "lastUpdatedInstant": "2019-08-24T14:15:22Z"
}