Max Offer Configuration

Set and update your max offer config to refine your price predictions.

Get max offer configuration

get

Get max offer configuration

Authorizations
Query parameters
regionstring · enumOptional

The region to perform this request in

Possible values:
Responses
200
Success
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

put

Upsert a max offer configuration

Authorizations
Query parameters
regionstring · enumOptional

The region to perform this request in

Possible values:
Body
Responses
200
Success
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?