POST api/Properties/SavePropertyTax
Request Information
URI Parameters
None.
Body Parameters
PropertyTaxViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| DBNo | integer |
None. |
|
| AppNo | integer |
None. |
|
| TempPropertyTaxID | integer |
None. |
|
| Propertyregistrationnumber | string |
None. |
|
| TempPropertyDetailID | integer |
None. |
|
| propertytaxArr | Collection of ProppertTaxDetailViewModel |
None. |
|
| IsActive | boolean |
None. |
|
| IsDeleted | boolean |
None. |
|
| CreatedBy | integer |
None. |
|
| UpdatedBy | integer |
None. |
|
| UserProfileID | integer |
None. |
|
| PropertyTypeAction | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"DBNo": 1,
"AppNo": 1,
"TempPropertyTaxID": 1,
"Propertyregistrationnumber": "sample string 1",
"TempPropertyDetailID": 2,
"propertytaxArr": [
{
"TempPropertyTaxID": 1,
"PropertyTaxDetailID": 1,
"PropertyTaxYear": "2026-04-06T21:34:31.0085676-05:00",
"CountryCurrencyID": 1,
"PropertyTaxAmount": 1.0,
"PropertyTaxDoc": "sample string 1"
},
{
"TempPropertyTaxID": 1,
"PropertyTaxDetailID": 1,
"PropertyTaxYear": "2026-04-06T21:34:31.0085676-05:00",
"CountryCurrencyID": 1,
"PropertyTaxAmount": 1.0,
"PropertyTaxDoc": "sample string 1"
}
],
"IsActive": true,
"IsDeleted": true,
"CreatedBy": 1,
"UpdatedBy": 1,
"UserProfileID": 1,
"PropertyTypeAction": "sample string 3"
}
application/xml, text/xml
Sample:
<PropertyTaxViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessAccessLayer.ViewModel">
<AppNo>1</AppNo>
<CreatedBy>1</CreatedBy>
<DBNo>1</DBNo>
<IsActive>true</IsActive>
<IsDeleted>true</IsDeleted>
<PropertyTypeAction>sample string 3</PropertyTypeAction>
<Propertyregistrationnumber>sample string 1</Propertyregistrationnumber>
<TempPropertyDetailID>2</TempPropertyDetailID>
<TempPropertyTaxID>1</TempPropertyTaxID>
<UpdatedBy>1</UpdatedBy>
<UserProfileID>1</UserProfileID>
<propertytaxArr>
<ProppertTaxDetailViewModel>
<CountryCurrencyID>1</CountryCurrencyID>
<PropertyTaxAmount>1</PropertyTaxAmount>
<PropertyTaxDetailID>1</PropertyTaxDetailID>
<PropertyTaxDoc>sample string 1</PropertyTaxDoc>
<PropertyTaxYear>2026-04-06T21:34:31.0085676-05:00</PropertyTaxYear>
<TempPropertyTaxID>1</TempPropertyTaxID>
</ProppertTaxDetailViewModel>
<ProppertTaxDetailViewModel>
<CountryCurrencyID>1</CountryCurrencyID>
<PropertyTaxAmount>1</PropertyTaxAmount>
<PropertyTaxDetailID>1</PropertyTaxDetailID>
<PropertyTaxDoc>sample string 1</PropertyTaxDoc>
<PropertyTaxYear>2026-04-06T21:34:31.0085676-05:00</PropertyTaxYear>
<TempPropertyTaxID>1</TempPropertyTaxID>
</ProppertTaxDetailViewModel>
</propertytaxArr>
</PropertyTaxViewModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Result| Name | Description | Type | Additional 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>