GET api/Notification/GetNotifications

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of NotificationDto
NameDescriptionTypeAdditional 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": "e222b6ee-c35a-4c16-a721-8395882471e2",
    "AccountId": "b552294d-04fc-4050-9f0f-e84e31fbb88c",
    "AccountName": "sample string 2",
    "Title": "sample string 3",
    "Message": "sample string 4",
    "NotificationImage": "sample string 5"
  },
  {
    "Id": "e222b6ee-c35a-4c16-a721-8395882471e2",
    "AccountId": "b552294d-04fc-4050-9f0f-e84e31fbb88c",
    "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>b552294d-04fc-4050-9f0f-e84e31fbb88c</AccountId>
    <AccountName>sample string 2</AccountName>
    <Id>e222b6ee-c35a-4c16-a721-8395882471e2</Id>
    <Message>sample string 4</Message>
    <NotificationImage>sample string 5</NotificationImage>
    <Title>sample string 3</Title>
  </NotificationDto>
  <NotificationDto>
    <AccountId>b552294d-04fc-4050-9f0f-e84e31fbb88c</AccountId>
    <AccountName>sample string 2</AccountName>
    <Id>e222b6ee-c35a-4c16-a721-8395882471e2</Id>
    <Message>sample string 4</Message>
    <NotificationImage>sample string 5</NotificationImage>
    <Title>sample string 3</Title>
  </NotificationDto>
</ArrayOfNotificationDto>