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

#### URL Expired

The URL for this request expired after 30 days.

### Schema Definitions

- **id**  
  integer  
  required  
  The id of the dealership

- **start_on**  
  date  
  required  
  The first date in the range

- **end_on**  
  date  
  required  
  The final date in the range

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

- **accept**  
  string  
  enum  
  Defaults to application/json
  
  Generated from available response content types
  
  application/json,text/csv
  
  Allowed:
  
  `application/json`,`text/csv`

### Response Codes

# `200      Success`
object of objects
Collection of transactions

# `400      Bad Request`

# `401      Unauthorized`

# `403      Forbidden`

# `406      Not Acceptable`

### CURL Example

```bash
curl --request GET \
     --url https://api.dealerware.com/admin/dealerships/id/reports/revenue \
     --header 'accept: application/json'
```

### Example Response

```json
[
  {
    "id": "eca68n2p",
    "contract_token": "343ACD",
    "disbursed_on": "2021-04-19",
    "customer_name": "Harry Potter",
    "vin": "1G1JC524417418958",
    "vehicle_group": "Rentals Warranty",
    "ro_number": 123456,
    "itemization": {
      "daily_rate": 100,
      "amount": 200,
      "fuel": 30,
      "fuel_service": 5,
      "other": 145.38,
      "taxes": 3.28,
      "payment_processor_fee": -4.33,
      "net_to_dealership": 134.7
    }
  }
]
```
