Gets a fleet settings instance

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 fleet

api-version

integer

required

Target API version

``200 Success

object

dealer_code

string

default_infleet_group

boolean

external_availability_group

boolean

exclude_rate

boolean

availability

object

An object of availability settings

grouping

string

A comma delimited list of trim properties on which to to group vehicles

(make, model, trim, body_type, power_train)

fleet_id

integer

geofence_charges

object

Geofence charge settings keyed by geofence id.

View Additional Properties

minimum_age

integer

program_type

string

A string representing the type of program the fleet is in (courtesy, rental, etc)

view_vehicles_under_contract

boolean

require_insurance_sufficiency

string

enum

Specifies when insurance sufficiency checks are required (none, loaner, rental, or loaner_rental)

none``loaner``rental``loaner\_rental

rented_vehicle_buffer_minutes

integer | null

sales_lead_enabled

boolean

whether Service to Sales lead generation is enabled for the fleet

sales_lead_offset_hours

integer

how many hours prior to a contract end a sales lead should be created (1-12)

sales_lead_cms_config_email

string | null

email address the Service to Sales lead configuration should notify in ADF format

``401 Unauthorized

``403 Forbidden

``404 Not found

``406 Not Acceptable

Updated3 months ago


ShellNodeRubyPHPPython

Bearer

Base URL

https://api.dealerware.com/admin/fleets/{id}/settings


xxxxxxxxxx

curl --request GET \

--url https://api.dealerware.com/admin/fleets/id/settings \

--header 'accept: application/json'

xxxxxxxxxx

{

"dealer_code": "DLW123AD",

"default_infleet_group": true,

"external_availability_group": false,

"exclude_rate": false,

"availability": {

"grouping": "make,model,trim"

},

"fleet_id": 123,

"geofence_charges": {

"fence-123": {

"name": "North Lot",

"enabled_for_rented_vehicles": true,

"vehicle_exits": true

},

"fence-456": {

"name": "Service Boundary",

"enabled_for_rented_vehicles": true,

"vehicle_exits": true,

"penalty": {

"price": 500,

"taxable": false,

"customer_sms": false,

"auto_charge": false

}

}

},

"minimum_age": 21,

"program_type": "rental",

"view_vehicles_under_contract": true,

"require_insurance_sufficiency": "loaner_rental",

"rented_vehicle_buffer_minutes": 20,

"sales_lead_enabled": false,

"sales_lead_offset_hours": 3,

"sales_lead_cms_config_email": "leads@dealer.com"

}

Updated3 months ago