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

page

integer

page of the resource to fetch

per_page

integer

number of records per page

api-version

integer

required

Target API version

# ``200      Success

array of objects

object

id

integer

created_at

date-time

updated_at

date-time

created_by

string

returns the full name or email of whoever created the issue

closed_by

string

returns the full name or email of whoever closed the issue

description

string

closed_description

string

status

string

image_count

number

# ``401      Unauthorized

# ``403      Forbidden

# ``406      Not Acceptable

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

```json
[
  {
    "id": 1,
    "created_at": "2026-07-28T06:44:48.313Z",
    "updated_at": "2026-07-28T06:44:48.313Z",
    "created_by": "John Smith",
    "closed_by": "john.smith@example.net",
    "description": "Scratches on the passenger door side",
    "closed_description": "Buffed out scratches in the shop",
    "status": "opened",
    "image_count": 0
  }
]
```
