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

#### URL Expired

The URL for this request expired after 30 days.

### Request Parameters

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

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

### Example Request

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

### Example Response

```json
[
  {
    "id": 9865144,
    "location_id": 3,
    "reservation_id": 950403,
    "reservation_confirmation": "474B5339FD",
    "transaction_id": "ez4dvqp8",
    "transaction_total": "55.0",
    "created_at": "2023-03-29T15:03:27Z",
    "updated_at": "2023-03-29T15:03:27Z",
    "transaction_processor_code": "1000",
    "transaction_processor_text": "Approved",
    "transaction_status": "settled",
    "transaction_type": "sale",
    "reservation_pickup": "2022-06-13T16:49:31Z",
    "reservation_dropoff": "2022-06-14T21:30:00Z",
    "account_name": "",
    "transaction_date": "2022-06-13T18:27:38Z",
    "settlement_date": "2022-06-13T19:17:32Z",
    "disbursement_date": "2022-06-14T00:00:00Z",
    "transaction_fee": "1.91",
    "fleet_id": 18368
  }
]
```
