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

#### URL Expired

The URL for this request expired after 30 days.

---

## API Documentation

### Parameters

- **uuid**  
  *string, required*  
  UUID of Contactless Contract

- **id**  
  *integer, required*  
  The driver's ID

- **api-version**  
  *integer, required*  
  Target API version

### Responses

#### 200 Success

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

#### 404 Not found

#### 406 Not Acceptable

---

## CURL Example

```shell
curl --request GET \
     --url https://api.dealerware.com/contracts/contactless/uuid/drivers/id \
     --header 'accept: application/json'
```
