API Endpoints
The base URL for our API is:
There are several endpoints as well:
POST Method
Finding the price between two addresses
Method | Endpoint | Notes |
---|---|---|
POST | https://api.zoom2u.com/api/v1/delivery/quote | Requires delivery, pickup, and drop off information to be provided. |
Creating a booking between two addresses
Method | Endpoint | Notes |
---|---|---|
POST | https://api.zoom2u.com/api/v1/delivery/create | Requires delivery, pickup, and drop off information to be provided. |
Updating the details of a booking
Method | Endpoint | Notes |
---|---|---|
POST | https://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
Method | Endpoint | Notes |
---|---|---|
POST | https://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
Method | Endpoint | Notes |
---|---|---|
POST | https://api.zoom2u.com/api/v1/delivery/webhooks/test | Can have an empty body, or include requested content. |
GET Method
Get the current status of a booking
Method | Endpoint | Notes |
---|---|---|
GET | https://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?