GET api/Notifications/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

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
}

application/xml, text/xml

Sample:
<Notification xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/iBasement.Models">
  <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>