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": "3ba928c5-bc2c-4506-a8e0-ead0f18698a3", "AccountId": "8600493d-deb9-49c0-a763-3fb4fea90c6b", "AccountName": "sample string 2", "Title": "sample string 3", "Message": "sample string 4", "NotificationImage": "sample string 5" }, { "Id": "3ba928c5-bc2c-4506-a8e0-ead0f18698a3", "AccountId": "8600493d-deb9-49c0-a763-3fb4fea90c6b", "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>8600493d-deb9-49c0-a763-3fb4fea90c6b</AccountId> <AccountName>sample string 2</AccountName> <Id>3ba928c5-bc2c-4506-a8e0-ead0f18698a3</Id> <Message>sample string 4</Message> <NotificationImage>sample string 5</NotificationImage> <Title>sample string 3</Title> </NotificationDto> <NotificationDto> <AccountId>8600493d-deb9-49c0-a763-3fb4fea90c6b</AccountId> <AccountName>sample string 2</AccountName> <Id>3ba928c5-bc2c-4506-a8e0-ead0f18698a3</Id> <Message>sample string 4</Message> <NotificationImage>sample string 5</NotificationImage> <Title>sample string 3</Title> </NotificationDto> </ArrayOfNotificationDto>