Quote

Detail

PropertyTypeDescriptionConstraints

name

string

Quote name

quoteId

number

Quota identifier

type

string

Quote type

Can be "slot", "flex", "express".

timeWindows

array

Arrangement with available time slots for the quota.

totalPrice

number

Total price of all deliveries in this installment. If you consult more than one delivery, here would be the sum of both.

deliveries

array

Deliveries that have this quote available.

deliveries.index

number

Position of the delivery in the sent payload.

deliveries.price

number

Price for that particular delivery.

deliveries.currencySign

string

Currency in which the price is in.

deliveries.distance

number

Distance between the pickup point and the delivery point for this task.

deliveries.deliveryQuoteId

string

Identifier used to create the delivery with the desired quota.

The duration of this fee is 30 minutes, after which you must reapply for a fee.

Example

{
    "name": "Regular Magazine Luiza Ultra 3P",
    "quoteId": 6024,
    "timeWindows": [
        {
            "pickupStart": 1688682962888,
            "pickupEnd": 1688686562888,
            "dropoffStart": 1688686562888,
            "dropoffEnd": 1688690162888
        },
        {
            "pickupStart": 1688686562888,
            "pickupEnd": 1688690162888,
            "dropoffStart": 1688690162888,
            "dropoffEnd": 1688693762888
        },
        {
            "pickupStart": 1688690162888,
            "pickupEnd": 1688693762888,
            "dropoffStart": 1688693762888,
            "dropoffEnd": 1688697362888
        },
        {
            "pickupStart": 1688693762888,
            "pickupEnd": 1688697362888,
            "dropoffStart": 1688697362888,
            "dropoffEnd": 1688700962888
        }
    ],
    "totalPrice": 10.03,
    "deliveries": [
        {
            "index": 0,
            "price": 10.03,
            "quoteIdReference": 6024,
            "currencySign": "R$",
            "distance": 12.7,
            "deliveryQuoteId": "scopes:1:SSQ:1688679363143"
        }
    ],
    "type": "slot"
}