Rides
About the Rides API
The EverTransit Rides API allows you to create and update a ride, as well as retrieve the details of an existing one. To make your requests, you can use the endpoints and their methods listed below.
Endpoints
The Ride object
Attributes
id
string
A unique identifier for the ride.
createdTime
string
The date and time the ride was created in ISO format.
scheduledTime
string
The date and time the ride was scheduled in ISO format.
pickup
object
Information about the pickup of the ride. For example, latitude, longitude, and address.
destination
object
Information about the destination of the ride. For example, latitude, longitude, and address.
service
object
Information about the service level of the ride. For example, name and description.
rider
object
Information about the rider of the ride. For example, first name, last name, email, and phone number.
driver
object
Information about the driver of the ride. For example, first name, last name, email, and phone number.
passengers
string
Amount of passengers on the ride.
reservationNumber
string
The reservation number to identify the ride.
status
string
The status of the ride.
vehicle
object
Information about the vehicle of the ride. For example, make, model, license plate, color, and year.
paymentMethod
enum
The payment method used to pay for the ride. It can be one of the followings: credit, cash, external, or invoice.
externalId
string
An external ID to associate the ride with an external system.
Create a ride
API playground for creating a ride
Retrieve a ride
API playground for retrieving a ride
Update a ride
Last updated
Was this helpful?