GET v1/NotificationMessage/List?EventGuid={EventGuid}&IsSent={IsSent}&Skip={Skip}&Take={Take}&SearchString={SearchString}&SortDirection={SortDirection}&SortName={SortName}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| EventGuid | globally unique identifier |
None. |
|
| IsSent | boolean |
None. |
|
| Skip | integer |
None. |
|
| Take | integer |
None. |
|
| SearchString | string |
None. |
|
| SortDirection | SortDirection |
None. |
|
| SortName | ListSortName |
None. |
Body Parameters
None.
Response Information
Resource Description
NotificationMessageListViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Items | Collection of NotificationMessageListItemViewModel |
None. |
Response Formats
application/json, text/json
Sample:
{
"Items": [
{
"Guid": "60ed27c8-6e7b-46b4-b876-1abb126615b6",
"Title": "sample string 2",
"Body": "sample string 3",
"Created": "2026-04-14T20:48:36.3434923+00:00",
"SendDT": "2026-04-14T20:48:36.3434923+00:00",
"IsSent": true
},
{
"Guid": "60ed27c8-6e7b-46b4-b876-1abb126615b6",
"Title": "sample string 2",
"Body": "sample string 3",
"Created": "2026-04-14T20:48:36.3434923+00:00",
"SendDT": "2026-04-14T20:48:36.3434923+00:00",
"IsSent": true
}
]
}
application/octet-stream
Sample:
{"Items":[{"Guid":"60ed27c8-6e7b-46b4-b876-1abb126615b6","Title":"sample string 2","Body":"sample string 3","Created":"2026-04-14T20:48:36.3434923+00:00","SendDT":"2026-04-14T20:48:36.3434923+00:00","IsSent":true},{"Guid":"60ed27c8-6e7b-46b4-b876-1abb126615b6","Title":"sample string 2","Body":"sample string 3","Created":"2026-04-14T20:48:36.3434923+00:00","SendDT":"2026-04-14T20:48:36.3434923+00:00","IsSent":true}]}
application/xml, text/xml
Sample:
<NotificationMessageListViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Interpulse.EventSystem.ViewModels.Services.List">
<Items>
<NotificationMessageListItemViewModel>
<Body>sample string 3</Body>
<Created>2026-04-14T20:48:36.3434923+00:00</Created>
<Guid>60ed27c8-6e7b-46b4-b876-1abb126615b6</Guid>
<IsSent>true</IsSent>
<SendDT>2026-04-14T20:48:36.3434923+00:00</SendDT>
<Title>sample string 2</Title>
</NotificationMessageListItemViewModel>
<NotificationMessageListItemViewModel>
<Body>sample string 3</Body>
<Created>2026-04-14T20:48:36.3434923+00:00</Created>
<Guid>60ed27c8-6e7b-46b4-b876-1abb126615b6</Guid>
<IsSent>true</IsSent>
<SendDT>2026-04-14T20:48:36.3434923+00:00</SendDT>
<Title>sample string 2</Title>
</NotificationMessageListItemViewModel>
</Items>
</NotificationMessageListViewModel>