Returns a list of available vehicles for a contract based on the provided query

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 contract id

q

string

required

Query parameter to search against indexed fields on vehicle

fleet_id

integer

Overriding the fleet from the contract to search for available vehicles

page

integer

Defaults to 1

Page number returned from collection based on total records and records per response

per_page

integer

Defaults to 30

Number records returned in collection in response

sort

string

enum

The sort order is ascending unless the column name is prefixed with a minus (U+002D HYPHEN-MINUS, "-"), in which case it will be descending.

created_atupdated_atlicensemodelodometerphysical_locationstatusstock_numberyearvinmaturity_datein_service_daterdr_date

Show 13 enum values

api-version

integer

required

Target API version

``200 Success

array of objects

object

connected

boolean

connected_car_device_firmware

string

connected_car_device_last_updated

date-time

device

string

fuel

object

fuel object

id

integer

license

string

links

object

links object

make

string

model

string

color

string

The color of the vehicle. may not be defined for non-Sedgwick location

odometer

object

odometer object

off_lot

boolean

physical_location

string

power_train

string

status

string

stock_number

string

telematics_source

string

telematics_enrolled

boolean

toll_tag_number

string

vin

string

year

integer

acriss_code

string

acriss_model_description

string

updated_at

string

created_at

string

days_off_contract

integer

rdr_date

date | null

The retail delivery report (RDR) date from the associated parking lot

maturity_date

date | null

The maturity date of the vehicle

disposed_at

date | null

The disposed_at date of the vehicle if exists

in_service_date

date | null

The competitor in-service date of the vehicle, defaults to created_at.

currently_rented_to_customer_id

integer | null

The ID of the customer currently renting the vehicle, if rented

``401 Unauthorized

``403 Forbidden

``404 Not found

``406 Not Acceptable

Updated3 months ago


ShellNodeRubyPHPPython

Bearer

Base URL

https://api.dealerware.com/admin/contracts/{id}/vehicles/available/search


xxxxxxxxxx

curl --request GET \

--url 'https://api.dealerware.com/admin/contracts/id/vehicles/available/search?page=1&per_page=30' \

--header 'accept: application/json'

xxxxxxxxxx

[

{

"connected": true,

"connected_car_device_firmware": "281110619:159:11",

"connected_car_device_last_updated": "2020-06-11T15:08:53Z",

"device": "guidepoint",

"fuel": {

"unit": "L",

"capacity": 20,

"value": 10

},

"id": 23561,

"license": "DNL445",

"links": {

"fleet": {

"id": 2,

"href": "https://api.dw-tst.com/admin/some_resources/2"

},

"fleet_ids": [

123,

125

],

"fleets": [

{

"id": 2,

"href": "https://api.dw-tst.com/admin/some_resources/2"

}

]

},

"make": "Audi",

"model": "Q5",

"color": "Silver",

"odometer": {

"value": 3293.5,

"unit": "km"

},

"off_lot": true,

"physical_location": "Lot A",

"power_train": "mechanical",

"status": "rented",

"stock_number": "VV111",

"telematics_source": "guidepoint",

"telematics_enrolled": true,

"toll_tag_number": "HMSJNFDS",

"vin": "1FT7W2BT4DEB5192",

"year": 2020,

"acriss_code": "CFAR",

"acriss_model_description": "Compact SUV Automatic With AC",

"updated_at": "2025-03-20T17:42:42Z",

"created_at": "2025-03-20T17:42:42Z",

"days_off_contract": 7,

"rdr_date": "2024-03-15",

"maturity_date": "2024-06-15",

"disposed_at": "2024-06-15",

"in_service_date": "2026-07-28",

"currently_rented_to_customer_id": 1789

}

]

Updated3 months ago

* * *