Demand
Make ride demands, get all available demands, get demands by a specific passenger, update demands, delete demands.
User demand endpoint
get demands
GET
https://carpoolingbackend.herokuapp.com/v1/apis/demandhe
Return all demands on a specific offer.
Path Parameters
Authorization
string
The auth_token
of the currently authenticated user
Query Parameters
id
integer
Get a demand on a specific offer.
An example of a get request on the demand endpoint.
post demand
POST
https://carpoolingbackend.herokuapp.com/v1/apis/demand
Make a demand on a specific offer
Path Parameters
Authorization
string
the auth_token
of the user making the request.
Request Body
available_seats
integer
The number of seats a passenger needs for the ride.
departure_time
string
The time of departure for the trip.
distance
number
The distance from the origin
to the destination
in Km.
origin
object
An object containing the longitude, latitude and the name of the passengers current location.
destination
object
An object containing the longitude, latitude and name of the user's chosen destination.
Note that you have to pass the location as two objects containing the origin and destination.
A sample body of the request is shown below.
An example of a post request on the demand endpoint
delete demand
DELETE
https://carpoolingbackend.herokuapp.com/v1/apis/demand/{id}
Delete a demand on a trip.
Path Parameters
Authorization
string
The auth_token
of the currently logged in user.
Query Parameters
id
integer
The id
of the demand to be deleted.
Last updated
Was this helpful?