GET api/Notifications/Details/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

tblNotifications
NameDescriptionTypeAdditional information
Id

integer

None.

userSno

integer

None.

userName

string

None.

notificationHeader

string

None.

notificationText

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "userSno": 2,
  "userName": "sample string 3",
  "notificationHeader": "sample string 4",
  "notificationText": "sample string 5"
}

text/xml

Sample:
<tblNotifications xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ProjWebApiMaint.Models">
  <Id>1</Id>
  <notificationHeader>sample string 4</notificationHeader>
  <notificationText>sample string 5</notificationText>
  <userName>sample string 3</userName>
  <userSno>2</userSno>
</tblNotifications>