Gets Dealership Fleet Pricing

Time Status User Agent
Make a request to see history.

URL Expired

The URL for this request expired after 30 days.

fleet_id
integer
required

The id of the dealership fleet

pickup_at
date-time
required

Pickup Time

dropoff_at
date-time
required

Dropoff Time

api-version
integer
required

Target API version

``200 Success

object

pickup_at
date-time

dropoff_at
date-time

duration
int64

currency_code
string

daily_rate
int64

total
double

receipt
object

rental
object

rental object

``400 Bad Request

``406 Not Acceptable

``422 Unprocessable Content

{
  "pickup_at": "2017-09-06T10:00:00Z",
  "dropoff_at": "2017-09-06T13:00:00Z",
  "duration": 3,
  "currency_code": "USD",
  "daily_rate": 38,
  "total": 123.45,
  "receipt": {
    "rental": {
      "label": "Rental",
      "total": 123.45,
      "items": [
        {
          "label": "1 Week",
          "secondary_label": "$710 per week",
          "total": 123.45
        }
      ]
    }
  }
}