# Max Offer Configuration

**Get Configuration**

Get your existing max offer configuration by using the request below.&#x20;

`/v2/valuations/max_offer_configuration`

You will receive a payload as per below showing you your current configuration.&#x20;

```json
{
  "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.&#x20;

`/v2/valuations/max_offer_configuration`

Your PUT request must conform to our schema as outlined below.&#x20;

```
{
  "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"
  }
}
```
