Offer
Make ride offers, get all available offers, get offers by a specific driver, update offers, delete offers.
Get offers endpoint.
get offers
GET
https://carpoolingbackend.herokuapp.com/v1/apis/offers
Returns all offers created by a specific driver with the driver profile included.
Path Parameters
Authorization
string
The auth token
of the currently logged in user.
an example of the get offers endpoint on insomnia.
an example of the get offers endpoint on insomnia.
Create a new offer
post offer
POST
https://carpoolingbackend.herokuapp.com/v1/apis/offers
Create a new ride offer.
Path Parameters
Authorization
string
The auth token of the currently logged in user
Request Body
origin
object
The name
, longitude
and latitude
of the users current location.
destination
object
the name
, longitude
and latitude
of the users destination.
seats_needed
integer
the number of seats available
departure_time
string
the time of departure for the driver.
is_full
boolean
A boolean that checks if the seats_needed is equal to the demands on a trip.
is_ended
boolean
A boolean that checks the trip status.
An example of a post request on insomnia.
An example of a post request on insomnia.
Read
Last updated
Was this helpful?