GET v1/api/notification/listHistoricalEnrolleeNotification?enrolleeNo={enrolleeNo}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| enrolleeNo | string |
Required |
Body Parameters
None.
Response Information
Resource Description
listHistoricalEnrolleeNotificationResult| Name | Description | Type | Additional information |
|---|---|---|---|
| success | boolean |
None. |
|
| errorMsg | string |
None. |
|
| notifications | Collection of notificationArray |
None. |
Response Formats
application/json, text/json
Sample:
{
"success": true,
"errorMsg": "sample string 2",
"notifications": [
{
"notificationBody": "sample string 1",
"title": "sample string 2",
"date": "sample string 3",
"time": "sample string 4"
},
{
"notificationBody": "sample string 1",
"title": "sample string 2",
"date": "sample string 3",
"time": "sample string 4"
}
]
}
application/xml, text/xml
Sample:
<listHistoricalEnrolleeNotificationResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/enrrolleeApp.Models.api_Main.listHistoricalEnrolleeNotification">
<errorMsg>sample string 2</errorMsg>
<notifications>
<listHistoricalEnrolleeNotificationResult.notificationArray>
<date>sample string 3</date>
<notificationBody>sample string 1</notificationBody>
<time>sample string 4</time>
<title>sample string 2</title>
</listHistoricalEnrolleeNotificationResult.notificationArray>
<listHistoricalEnrolleeNotificationResult.notificationArray>
<date>sample string 3</date>
<notificationBody>sample string 1</notificationBody>
<time>sample string 4</time>
<title>sample string 2</title>
</listHistoricalEnrolleeNotificationResult.notificationArray>
</notifications>
<success>true</success>
</listHistoricalEnrolleeNotificationResult>
text/html
Sample:
{"success":true,"errorMsg":"sample string 2","notifications":[{"notificationBody":"sample string 1","title":"sample string 2","date":"sample string 3","time":"sample string 4"},{"notificationBody":"sample string 1","title":"sample string 2","date":"sample string 3","time":"sample string 4"}]}