Max Offer Configuration
Set and update your max offer config to refine your price predictions.
Get max offer configuration
Authorizations
Query parameters
regionstring · enumOptionalPossible values:
The region to perform this request in
Responses
200
Success
application/json
400
Bad Request
application/json
401
Unauthorized
application/json
404
Not Found
application/json
get
GET /v2/valuations/max_offer_configuration HTTP/1.1
Host: api.autograb.com.au
ApiKey: YOUR_API_KEY
Accept: */*
{
"success": true,
"max_offer_configuration": {
"reconditioning_percentage": 1,
"reconditioning_fixed": 1,
"profit_margin_percentage": 1,
"profit_margin_fixed": 1,
"lot_percentage": 1,
"lot_fixed": 1,
"transport_percentage": 1,
"transport_fixed": 1,
"admin_percentage": 1,
"admin_fixed": 1
}
}
Upsert a max offer configuration
Authorizations
Query parameters
regionstring · enumOptionalPossible values:
The region to perform this request in
Body
Responses
200
Success
application/json
400
Bad Request
application/json
401
Unauthorized
application/json
404
Not Found
application/json
put
PUT /v2/valuations/max_offer_configuration HTTP/1.1
Host: api.autograb.com.au
ApiKey: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 200
{
"reconditioning": {
"amount": 1,
"type": "fixed"
},
"profit_margin": {
"amount": 1,
"type": "fixed"
},
"lot": {
"amount": 1,
"type": "fixed"
},
"transport": {
"amount": 1,
"type": "fixed"
},
"admin": {
"amount": 1,
"type": "fixed"
}
}
{
"success": true,
"max_offer_configuration": {
"reconditioning_percentage": 1,
"reconditioning_fixed": 1,
"profit_margin_percentage": 1,
"profit_margin_fixed": 1,
"lot_percentage": 1,
"lot_fixed": 1,
"transport_percentage": 1,
"transport_fixed": 1,
"admin_percentage": 1,
"admin_fixed": 1
}
}
Last updated
Was this helpful?