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
NotificationMessageListViewModelName | Description | Type | Additional information |
---|---|---|---|
Items | Collection of NotificationMessageListItemViewModel |
None. |
Response Formats
application/json, text/json
Sample:
{ "Items": [ { "Guid": "ee7ffb3b-4869-434d-b08d-c2397dc9c2be", "Title": "sample string 2", "Body": "sample string 3", "Created": "2023-11-22T11:06:03.8136174+00:00", "SendDT": "2023-11-22T11:06:03.8136174+00:00", "IsSent": true }, { "Guid": "ee7ffb3b-4869-434d-b08d-c2397dc9c2be", "Title": "sample string 2", "Body": "sample string 3", "Created": "2023-11-22T11:06:03.8136174+00:00", "SendDT": "2023-11-22T11:06:03.8136174+00:00", "IsSent": true } ] }
application/octet-stream
Sample:
{"Items":[{"Guid":"ee7ffb3b-4869-434d-b08d-c2397dc9c2be","Title":"sample string 2","Body":"sample string 3","Created":"2023-11-22T11:06:03.8136174+00:00","SendDT":"2023-11-22T11:06:03.8136174+00:00","IsSent":true},{"Guid":"ee7ffb3b-4869-434d-b08d-c2397dc9c2be","Title":"sample string 2","Body":"sample string 3","Created":"2023-11-22T11:06:03.8136174+00:00","SendDT":"2023-11-22T11:06:03.8136174+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>2023-11-22T11:06:03.8136174+00:00</Created> <Guid>ee7ffb3b-4869-434d-b08d-c2397dc9c2be</Guid> <IsSent>true</IsSent> <SendDT>2023-11-22T11:06:03.8136174+00:00</SendDT> <Title>sample string 2</Title> </NotificationMessageListItemViewModel> <NotificationMessageListItemViewModel> <Body>sample string 3</Body> <Created>2023-11-22T11:06:03.8136174+00:00</Created> <Guid>ee7ffb3b-4869-434d-b08d-c2397dc9c2be</Guid> <IsSent>true</IsSent> <SendDT>2023-11-22T11:06:03.8136174+00:00</SendDT> <Title>sample string 2</Title> </NotificationMessageListItemViewModel> </Items> </NotificationMessageListViewModel>