Generate Quote
POST/quote
Use this endpoint to check whether we are able to deliver a specific order. If delivery is possible, the endpoint will provide information on available services, delivery times (including cutoff times), pickup times, associated rates, and possible add-ons.
Request
- application/json
Body
required
Request a quote for a delivery
Unique identifier of the brand.
Total value of the order in USD
pickUp objectrequired
Address data
2 letter state code - ISO 3166-2
2 letter country code - ISO 3166-2
dropOff objectrequired
Address data
2 letter state code - ISO 3166-2
2 letter country code - ISO 3166-2
Possible values: [EXTRA_INSURANCE
, SIGNATURE_REQUIRED
, WITHOUT_LABEL
]
Add-ons for the delivery service
Responses
- 201
- 400
- 404
If the request is valid, a successful response will contain a list of available services for the particular delivery including a list of associated rates.
If the request is invalid, the error response will include an error code and a useful error message, such as “The destination address is outside of our current service area”.
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
object objectrequired
Quote with available services and prices
availableServices object[]required
Possible values: [SAME_DAY
, NEXT_DAY
, SCHEDULED
]
Determine the delivery date, including pick-up and drop-off times.
Possible values: [DELIVERY
, RETURN
]
consumerSettings object
{
"success": true,
"object": {
"availableServices": [
{
"serviceType": "SAME_DAY",
"jobType": "DELIVERY",
"cutOffTime": "2024-06-06T14:00:40.079Z",
"pickUpEarliestTime": "2024-06-06T14:00:40.079Z",
"pickUpLatestTime": "2024-06-06T14:00:40.079Z",
"dropOffEarliestTime": "2024-06-06T14:00:40.079Z",
"dropOffLatestTime": "2024-06-06T14:00:40.079Z",
"consumerSettings": {
"name": "string",
"description": "string",
"priceUsd": 0
}
}
]
}
}
Bad request
- application/json
- Schema
- Example (from schema)
Schema
Human readable error message.
Machine readable error message.
More help on the error here.
{
"message": "string",
"code": "string",
"more": "string"
}
Quote not available
- application/json
- Schema
- Example (from schema)
Schema
Human readable error message.
Machine readable error message.
More help on the error here.
{
"message": "string",
"code": "string",
"more": "string"
}