POST api/Properties/SaveNotification

Request Information

URI Parameters

None.

Body Parameters

PR_Notification
NameDescriptionTypeAdditional information
ROWID

globally unique identifier

None.

NotificationID

integer

None.

SenderID

integer

None.

GaterID

integer

None.

Description

string

None.

Title

string

None.

NotificationDate

date

None.

IsReaded

boolean

None.

IsRreadDate

date

None.

LocationID

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "ROWID": "aced0ba4-7b7c-45c0-a70d-384b69ef70de",
  "NotificationID": 1,
  "SenderID": 1,
  "GaterID": 1,
  "Description": "sample string 2",
  "Title": "sample string 3",
  "NotificationDate": "2026-04-06T21:32:11.8608222-05:00",
  "IsReaded": true,
  "IsRreadDate": "2026-04-06T21:32:11.8608222-05:00",
  "LocationID": 1
}

application/xml, text/xml

Sample:
<PR_Notification xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessAccessLayer.Entities">
  <Description>sample string 2</Description>
  <GaterID>1</GaterID>
  <IsReaded>true</IsReaded>
  <IsRreadDate>2026-04-06T21:32:11.8608222-05:00</IsRreadDate>
  <LocationID>1</LocationID>
  <NotificationDate>2026-04-06T21:32:11.8608222-05:00</NotificationDate>
  <NotificationID>1</NotificationID>
  <ROWID>aced0ba4-7b7c-45c0-a70d-384b69ef70de</ROWID>
  <SenderID>1</SenderID>
  <Title>sample string 3</Title>
</PR_Notification>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Result
NameDescriptionTypeAdditional information
Status

ResultStatus

None.

Message

string

None.

Data

Object

None.

Response Formats

application/json, text/json

Sample:
{
  "Status": 100,
  "Message": "sample string 1",
  "Data": {}
}

application/xml, text/xml

Sample:
<Result xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessAccessLayer.Generics">
  <Data />
  <Message>sample string 1</Message>
  <Status>Success</Status>
</Result>