Get availability for a Fleet/Program with intervals

Time Status User Agent
Make a request to see history.

URL Expired

The URL for this request expired after 30 days.

API Parameters

Response Codes

Example CURL Request

curl --request GET \
     --url 'https://api.dealerware.com/admin/availability/groups/group_id/intervals?time_slot_interval=15minutes' \
     --header 'accept: application/json'

Example JSON Response

[
  {
    "id": 42,
    "name": "2 Door Coupe/Convertible Roadster",
    "intervals": [
      {
        "start_at": "2020-06-15T08:00:00Z",
        "end_at": "2020-06-15T09:00:00Z",
        "groups": [
          {
            "make": "GMC",
            "model": "Sierra 1500",
            "trim": "Elevation",
            "body_type": "Crew Cab",
            "power_train": "mechanical",
            "available_vehicles": [
              {
                "id": 42,
                "vin": "1G1YY22G8X5123456",
                "base_msrp": "$28,760.00"
              }
            ]
          }
        ]
      }
    ]
  }
]