GET api/Notification/GetNotifications
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of NotificationDtoName | Description | Type | Additional information |
---|---|---|---|
Id | globally unique identifier |
None. |
|
AccountId | globally unique identifier |
None. |
|
AccountName | string |
None. |
|
Title | string |
None. |
|
Message | string |
None. |
|
NotificationImage | string |
None. |
Response Formats
application/json, text/json
Sample:
[ { "Id": "36cf43b7-a681-40af-8fbc-49dc49fc302a", "AccountId": "6fd2802e-bba0-4f3a-b87b-701ec85dc7d8", "AccountName": "sample string 2", "Title": "sample string 3", "Message": "sample string 4", "NotificationImage": "sample string 5" }, { "Id": "36cf43b7-a681-40af-8fbc-49dc49fc302a", "AccountId": "6fd2802e-bba0-4f3a-b87b-701ec85dc7d8", "AccountName": "sample string 2", "Title": "sample string 3", "Message": "sample string 4", "NotificationImage": "sample string 5" } ]
application/xml, text/xml
Sample:
<ArrayOfNotificationDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Modules.NotificationModule.Model"> <NotificationDto> <AccountId>6fd2802e-bba0-4f3a-b87b-701ec85dc7d8</AccountId> <AccountName>sample string 2</AccountName> <Id>36cf43b7-a681-40af-8fbc-49dc49fc302a</Id> <Message>sample string 4</Message> <NotificationImage>sample string 5</NotificationImage> <Title>sample string 3</Title> </NotificationDto> <NotificationDto> <AccountId>6fd2802e-bba0-4f3a-b87b-701ec85dc7d8</AccountId> <AccountName>sample string 2</AccountName> <Id>36cf43b7-a681-40af-8fbc-49dc49fc302a</Id> <Message>sample string 4</Message> <NotificationImage>sample string 5</NotificationImage> <Title>sample string 3</Title> </NotificationDto> </ArrayOfNotificationDto>