The base URL for our API is:

https://api.zoom2u.com/api/
 

There are several endpoints as well:

POST Method

Finding the price between two addresses

MethodEndpointNotes
POSThttps://api.zoom2u.com/api/v1/delivery/quoteRequires delivery, pickup, and drop off information to be provided.



Creating a booking between two addresses
MethodEndpointNotes
POSThttps://api.zoom2u.com/api/v1/delivery/createRequires delivery, pickup, and drop off information to be provided.



Updating the details of a booking
MethodEndpointNotes
POSThttps://api.zoom2u.com/api/v1/delivery/update/{reference}{reference} is the Zoom2u booking reference that would have been provided in the HTTP Response when the booking was created.
Requires delivery, pickup, and drop off information to be provided.



Cancelling a booking
MethodEndpointNotes
POSThttps://api.zoom2u.com/api/v1/delivery/cancel/{reference}{reference} is the Zoom2u booking reference that would have been provided in the HTTP Response when the booking was created.



Pinging our webhook service to get an example response
MethodEndpointNotes
POSThttps://api.zoom2u.com/api/v1/delivery/webhooks/testCan have an empty body, or include requested content.


GET Method

Get the current status of a booking

MethodEndpointNotes
GEThttps://api.zoom2u.com/api/v1/delivery/status/{reference}{reference} is the Zoom2u booking reference that would have been provided in the HTTP Response when the booking was created.


What’s Next?