Max Offer Configuration
Set and update your max offer config to refine your price predictions.
Get Configuration
Get your existing max offer configuration by using the request below.
/v2/valuations/max_offer_configuration
You will receive a payload as per below showing you your current configuration.
{
"success": true,
"max_offer_configuration": {
"reconditioning_percentage": 0,
"reconditioning_fixed": 0,
"profit_margin_percentage": 0,
"profit_margin_fixed": 0,
"lot_percentage": 0,
"lot_fixed": 0,
"transport_percentage": 0,
"transport_fixed": 0,
"admin_percentage": 0,
"admin_fixed": 0
}
}
Update Configuration
Upsert a max offer configuration to change a part of it.
/v2/valuations/max_offer_configuration
Your PUT request must conform to our schema as outlined below.
{
"reconditioning": {
"amount": 1000,
"type": "fixed"
},
"profit_margin": {
"amount": 1000,
"type": "fixed"
},
"lot": {
"amount": 1000,
"type": "fixed"
},
"transport": {
"amount": 1000,
"type": "fixed"
},
"admin": {
"amount": 1000,
"type": "fixed"
}
}