GET api/Service/GetUserNotifications?p_UserNo={p_UserNo}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| p_UserNo | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
GetNotificationsOutputResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| appNotifications | Collection of AppNotifications |
None. |
Response Formats
application/json, text/json
Sample:
{
"appNotifications": [
{
"SerialNo": 1,
"UserNo": 2,
"Title": "sample string 3",
"Message": "sample string 4",
"ADDDate": "2026-05-17T10:48:13.0265285+00:00",
"Status": 6
},
{
"SerialNo": 1,
"UserNo": 2,
"Title": "sample string 3",
"Message": "sample string 4",
"ADDDate": "2026-05-17T10:48:13.0265285+00:00",
"Status": 6
}
]
}
application/xml, text/xml
Sample:
<GetNotificationsOutputResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BizMate.BizLayer">
<appNotifications>
<AppNotifications>
<ADDDate>2026-05-17T10:48:13.0265285+00:00</ADDDate>
<Message>sample string 4</Message>
<SerialNo>1</SerialNo>
<Status>6</Status>
<Title>sample string 3</Title>
<UserNo>2</UserNo>
</AppNotifications>
<AppNotifications>
<ADDDate>2026-05-17T10:48:13.0265285+00:00</ADDDate>
<Message>sample string 4</Message>
<SerialNo>1</SerialNo>
<Status>6</Status>
<Title>sample string 3</Title>
<UserNo>2</UserNo>
</AppNotifications>
</appNotifications>
</GetNotificationsOutputResponse>