GET api/Notifications

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of Notification
NameDescriptionTypeAdditional information
Id

integer

None.

MacAddress

string

None.

Destination

string

None.

SendAlertTypes

string

None.

Rtype

integer

None.

Ctype

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": 1,
    "MacAddress": "sample string 2",
    "Destination": "sample string 3",
    "SendAlertTypes": "sample string 4",
    "Rtype": 5,
    "Ctype": 6
  },
  {
    "Id": 1,
    "MacAddress": "sample string 2",
    "Destination": "sample string 3",
    "SendAlertTypes": "sample string 4",
    "Rtype": 5,
    "Ctype": 6
  }
]

application/xml, text/xml

Sample:
<ArrayOfNotification xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/iBasement.Models">
  <Notification>
    <Ctype>6</Ctype>
    <Destination>sample string 3</Destination>
    <Id>1</Id>
    <MacAddress>sample string 2</MacAddress>
    <Rtype>5</Rtype>
    <SendAlertTypes>sample string 4</SendAlertTypes>
  </Notification>
  <Notification>
    <Ctype>6</Ctype>
    <Destination>sample string 3</Destination>
    <Id>1</Id>
    <MacAddress>sample string 2</MacAddress>
    <Rtype>5</Rtype>
    <SendAlertTypes>sample string 4</SendAlertTypes>
  </Notification>
</ArrayOfNotification>