GET api/v1/GetNotification

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of Notification
NameDescriptionTypeAdditional information
id

string

None.

img

string

None.

notitext

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "id": "sample string 1",
    "img": "sample string 2",
    "notitext": "sample string 3"
  },
  {
    "id": "sample string 1",
    "img": "sample string 2",
    "notitext": "sample string 3"
  }
]

application/xml, text/xml

Sample:
<ArrayOfNotification xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/APIBridge">
  <Notification>
    <id>sample string 1</id>
    <img>sample string 2</img>
    <notitext>sample string 3</notitext>
  </Notification>
  <Notification>
    <id>sample string 1</id>
    <img>sample string 2</img>
    <notitext>sample string 3</notitext>
  </Notification>
</ArrayOfNotification>