POST api/v1/Post_AddUpdatePropertystep1_V2
Request Information
URI Parameters
None.
Body Parameters
PostPropertyRequeststep1_v2| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
None. |
|
| propertyid | string |
None. |
|
| projectid | integer |
None. |
|
| category | integer |
None. |
|
| subcategory | integer |
None. |
|
| title | string |
None. |
|
| description | string |
None. |
|
| bed | integer |
None. |
|
| cost | decimal number |
None. |
|
| totalarea | decimal number |
None. |
|
| builduparea | decimal number |
None. |
|
| caretareaarea | decimal number |
None. |
|
| saletype | integer |
None. |
|
| possessionstatus | integer |
None. |
|
| address1 | string |
None. |
|
| lat | string |
None. |
|
| lon | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"id": 1,
"propertyid": "sample string 2",
"projectid": 3,
"category": 4,
"subcategory": 5,
"title": "sample string 6",
"description": "sample string 7",
"bed": 8,
"cost": 9.0,
"totalarea": 10.0,
"builduparea": 11.0,
"caretareaarea": 12.0,
"saletype": 13,
"possessionstatus": 14,
"address1": "sample string 15",
"lat": "sample string 16",
"lon": "sample string 17"
}
application/xml, text/xml
Sample:
<PostPropertyRequeststep1_v2 xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/APIBridge"> <address1>sample string 15</address1> <bed>8</bed> <builduparea>11</builduparea> <caretareaarea>12</caretareaarea> <category>4</category> <cost>9</cost> <description>sample string 7</description> <id>1</id> <lat>sample string 16</lat> <lon>sample string 17</lon> <possessionstatus>14</possessionstatus> <projectid>3</projectid> <propertyid>sample string 2</propertyid> <saletype>13</saletype> <subcategory>5</subcategory> <title>sample string 6</title> <totalarea>10</totalarea> </PostPropertyRequeststep1_v2>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
PostPropertyResponsestep1| Name | Description | Type | Additional information |
|---|---|---|---|
| status | string |
None. |
|
| msg | string |
None. |
|
| propertyid | string |
None. |
|
| id | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"status": "sample string 1",
"msg": "sample string 2",
"propertyid": "sample string 3",
"id": 4
}
application/xml, text/xml
Sample:
<PostPropertyResponsestep1 xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/APIBridge"> <id>4</id> <msg>sample string 2</msg> <propertyid>sample string 3</propertyid> <status>sample string 1</status> </PostPropertyResponsestep1>