POST api/PropertyNotes/Add

Request Information

URI Parameters

None.

Body Parameters

PropertyNotesModel
NameDescriptionTypeAdditional information
Id

integer

None.

Property_Id

integer

None.

User_Id

integer

None.

Note_Date

date

None.

Note

string

None.

IsActive

boolean

Required

CreatedBy

string

Required

CreatedDate

date

Required

UpdatedBy

string

None.

UpdatedDate

date

None.

Request Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "Property_Id": 2,
  "User_Id": 3,
  "Note_Date": "2025-12-11T04:33:44.5514206+05:30",
  "Note": "sample string 5",
  "IsActive": true,
  "CreatedBy": "sample string 7",
  "CreatedDate": "2025-12-11T04:33:44.5514206+05:30",
  "UpdatedBy": "sample string 9",
  "UpdatedDate": "2025-12-11T04:33:44.5514206+05:30"
}

application/xml, text/xml

Sample:
<PropertyNotesModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PropertyRMS.Model">
  <CreatedBy>sample string 7</CreatedBy>
  <CreatedDate>2025-12-11T04:33:44.5514206+05:30</CreatedDate>
  <Id>1</Id>
  <IsActive>true</IsActive>
  <Note>sample string 5</Note>
  <Note_Date>2025-12-11T04:33:44.5514206+05:30</Note_Date>
  <Property_Id>2</Property_Id>
  <UpdatedBy>sample string 9</UpdatedBy>
  <UpdatedDate>2025-12-11T04:33:44.5514206+05:30</UpdatedDate>
  <User_Id>3</User_Id>
</PropertyNotesModel>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'PropertyNotesModel'.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.