LogoLogo
API StatusSupportPostmanContact Us
🇬🇧 UK AutoGrab API Doc
🇬🇧 UK AutoGrab API Doc
  • AutoGrab Basics
    • AutoGrab Developer Hub
    • Integration Overview
    • API Test Cases
    • FAQ
  • Authentication
    • API Key
    • OAuth Authentication
  • Vehicle Search
    • Vehicle Searching Basics
    • Plain-text Search
    • VRM Search
    • VIN Search
    • Facet Search
    • Vehicle ID Search
    • Marketplace ID Lookup
  • Sourcing
    • Sourcing Basics
    • Market Overlay
    • Market Statistics
    • Stock Feeds
  • Vehicle Data
    • Vehicle Data Basics
    • Recall Search
    • MOT & Tax Search
    • Vehicle History
    • Factory Build Data
    • Factory Fitted Options
  • Valuation
    • Valuation Basics
    • Valuation Predictions
    • Residual Valuations
    • Max Offer Configuration
    • Gauge API
  • Embeddable Products
    • Embeddable Basics
    • Gauge Widget
    • Valuation Widget
    • Market Overlay Widget
  • Customer Recapture
    • Customer Recapture
    • Webhooks Integration
  • Insurance
    • Pre-Accident Valuation
Powered by GitBook
LogoLogo

Links

  • Terms of Use

2024 © AutoGrab Pty Ltd. ABN 79 638 468 569

On this page

Was this helpful?

Export as PDF
  1. Valuation

Max Offer Configuration

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

PreviousResidual ValuationsNextGauge API

Last updated 3 months ago

Was this helpful?

  • PUTUpsert a max offer configuration
  • GETGet max offer configuration

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
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

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
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
  }
}