Dossier Valuation Override
PUT
dossiers/<dossier_id>/override_valuation
Override the valuation of a dossier specified in the request path by replacing the fields with the ones provided.
Request#
curl -X PUT 'https://api.pricehubble.com/api/v1/dossiers/119a6ead-4ac4-4b4b-b264-195a2895618e/override_valuation' \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer 74126eab0a9048d993bda4b1b55ae074' \
-d '{
"valuationOverrideSalePrice": 1909100,
"valuationOverrideSalePriceRange": {
"lower": 1573900,
"upper": 2044200
},
"valuationOverrideRentNet": 11856,
"valuationOverrideRentNetRange": {
"lower": 10908,
"upper": 12804
},
"valuationOverrideRentGross": 13632,
"valuationOverrideRentGrossRange": {
"lower": 12540,
"upper": 14724
}
}'
Field | Description | Type | Remarks |
---|---|---|---|
valuationOverrideSalePrice | Custom sale price valuation that overrides PriceHubble's valuation | integer | Only relevant if dealType is sale or is unset |
valuationOverrideSalePriceRange | Custom sale price valuation range that overrides PriceHubble's valuation | LowerUpperBound | Only relevant if dealType is sale or is unset |
valuationOverrideRentNet | Custom net rent valuation that overrides PriceHubble's valuation | integer | Only relevant if dealType is rent or is unset,and if net rent valuations are supported in the current country |
valuationOverrideRentNetRange | Custom net rent valuation range that overrides PriceHubble's valuation | LowerUpperBound | Only relevant if dealType is rent or is unset,and if net rent valuations are supported in the current country |
valuationOverrideRentGross | Custom gross rent valuation that overrides PriceHubble's valuation | integer | Only relevant if dealType is rent or is unset,and if gross rent valuations are supported in the current country |
valuationOverrideRentGrossRange | Custom gross rent valuation range that overrides PriceHubble's valuation | LowerUpperBound | Only relevant if dealType is rent or is unset,and if gross rent valuations are supported in the current country |