Skip to main content
GET
/
v1
/
vehicles
/
{vehicle_id}
/
departure-times
List Vehicle Departure Times
curl --request GET \
  --url https://api.volteras.com/v1/vehicles/{vehicle_id}/departure-times \
  --header 'Authorization: Bearer <token>'
{
  "departureTimes": [
    {
      "hour": 123,
      "minute": 123,
      "daysOfWeek": [
        "MONDAY"
      ],
      "localTimeOffset": 123
    }
  ]
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Path Parameters

vehicle_id
string
required

Unique internal identifier for the vehicle.

Response

200 - application/json

Successful Response

departureTimes
DepartureTime · object[]
required