| Time | Status | User Agent |  |
| :-- | :-- | :-- | :-- |
| Make a request to see history. |

#### URL Expired

The URL for this request expired after 30 days.

---

### Schema

#### uuid
string

required

UUID of Contactless Contract

#### id
integer

required

The driver's ID

#### api-version
integer

required

Target API version

# Responses

# ``200      Success

object

- agreement_url  
  string

- customer_name  
  string
  The full name of the customer that is attached to the contract

- dealership_name  
  string
  The dealership's name where the contract was started at

- first_name  
  string
  The driver's first name

- fuel  
  string

- fuel_percentage  
  float

- last_name  
  string
  The driver's last name

- metric  
  boolean

- odometer  
  object
  - value  
    float
    required
  - unit  
    string
    required

- signature  
  boolean

# ``404      Not found

# ``406      Not Acceptable

---

### Example Response

```json
{
  "agreement_url": "http://host.com/path/agreement.pdf",
  "customer_name": "John Doe",
  "dealership_name": "Car Dealership of North Anywhere",
  "first_name": "John",
  "fuel": "15/16",
  "fuel_percentage": 98.5,
  "last_name": "Doe",
  "metric": false,
  "odometer": {
    "value": 1205.11,
    "unit": "km"
  },
  "signature": false
}
```
