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

#### URL Expired

The URL for this request expired after 30 days.

id

integer

required

The id of the dealership

api-version

integer

required

Target API version

# ``200      Success

array of objects

object

make

string

models

array of strings

# ``400      Bad Request

# ``401      Unauthorized

# ``404      Not found

# Base URL

https://api.dealerware.com/admin/dealerships/{id}/makes_and_models

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

```

[
  {
    "make": "Honda",
    "models": [
      "Civic",
      "Accord"
    ]
  },
  {
    "make": "Toyota",
    "models": [
      "Camry",
      "Corolla"
    ]
  },
  {
    "make": "Ford",
    "models": [
      "Focus"
    ]
  }
]
