PUT api/v1/orders/{orderId}/characteristics
This endpoint updates a set of property characteristics to an existing order.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| orderId |
Order Id |
integer |
Required |
Body Parameters
Characteristics
PropertyCharacteristicsVM| Name | Description | Type | Additional information |
|---|---|---|---|
| Bedrooms | integer |
None. |
|
| FullBaths | integer |
None. |
|
| HalfBaths | integer |
None. |
|
| Stories | string |
None. |
|
| YearBuilt | integer |
None. |
|
| TotalLivingArea | integer |
None. |
|
| StructureQuality | string |
None. |
|
| BasementSizeSF | integer |
None. |
|
| Hasbasement | string |
None. |
|
| BasementFinishedPct | integer |
None. |
|
| AttachedGaragesNumberOfCars | string |
None. |
|
| BuiltInGaragesNumberOfCars | string |
None. |
|
| Condition | string |
None. |
|
| SiteLotSizeInSqFt | integer |
None. |
|
| RoofPitch | string |
None. |
|
| SelectedMaterials | Collection of LookupListValueVM |
None. |
Request Formats
application/json, text/json
Sample:
{
"bedrooms": 1,
"fullBaths": 1,
"halfBaths": 1,
"stories": "sample string 1",
"yearBuilt": 1,
"totalLivingArea": 1,
"structureQuality": "sample string 2",
"basementSizeSF": 1,
"hasbasement": "sample string 3",
"basementFinishedPct": 1,
"attachedGaragesNumberOfCars": "sample string 4",
"builtInGaragesNumberOfCars": "sample string 5",
"condition": "sample string 6",
"siteLotSizeInSqFt": 1,
"roofPitch": "sample string 7",
"selectedMaterials": [
{
"id": 1,
"value": "sample string 2",
"displayValue": "sample string 3",
"displayOrder": 4,
"description": "sample string 5",
"default": true,
"bbCalcAnswerId": 1,
"created": "2025-12-11T13:13:54.0211929+00:00",
"createdBy": "sample string 7",
"modified": "2025-12-11T13:13:54.0211929+00:00",
"modifiedBy": "sample string 9",
"rowVersion": 10,
"lookupList_Id": 11
},
{
"id": 1,
"value": "sample string 2",
"displayValue": "sample string 3",
"displayOrder": 4,
"description": "sample string 5",
"default": true,
"bbCalcAnswerId": 1,
"created": "2025-12-11T13:13:54.0211929+00:00",
"createdBy": "sample string 7",
"modified": "2025-12-11T13:13:54.0211929+00:00",
"modifiedBy": "sample string 9",
"rowVersion": 10,
"lookupList_Id": 11
}
]
}
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
An object with the property characteristics
IHttpActionResultNone.
Response Formats
application/json, text/json
Sample:
Sample not available.