Developers
English
English
  • 👋Welcome
  • 🛒E-commerce
    • Introduction
    • Shopify
      • Functionalities
      • Steps to integrate
      • User guide
      • FAQs
    • Mercado Livre
      • Functionalities
      • Steps to integrate
      • FAQs
    • Vtex
      • Funcionalities
      • Steps to integrate
      • FAQs
    • Beetrack
      • Funcionalities
      • Steps to integrate
      • FAQs
    • Prestashop
      • Functionalities
      • Steps to integrate
      • FAQs
  • 👨‍💻Integration Guide
    • Basic processes
      • Delivery creation
        • Dash
        • Import
        • Zapier
        • API
        • SFTP
        • Custom
      • Status update
        • Webhook subscriptions
        • Continuous Polling
        • Statuses
    • Advanced process
      • Interactive delivery tracking
      • Security
        • [2FA] Two Factor Authentication Method
        • Activate SAML SSO for a Company
  • 📄Shippify Api
    • First steps
    • Deliveries
      • Delivery creation
      • Delivery Quotes
      • Get delivery information
      • Update pickup point
      • Update delivery
      • Change delivery statuses
      • Assign driver
      • Print delivery labels
      • Get a tracking link
      • Attach documents to a delivery
    • Routes
      • Create route
      • Get route information
      • Add a delivery
      • Remove a delivery
      • Break a route
      • Change the status of a route
  • 📝Processes
    • Create a Shippify account
Con tecnología de GitBook
En esta página
  1. Shippify Api
  2. Deliveries

Delivery Quotes

In this section, you can find the endpoint to get delivery quotes.

AnteriorDelivery creationSiguienteGet delivery information

Última actualización hace 12 meses

This endpoint provides you with delivery quotes without the need to create them in the system. It includes the detailed price for each quoted task as well as the available scheduling times depending on the .

The payload sent is the same as in the , you can use the same examples provided there.

📄
delivery creation
delivery type

Delivery quotes

post

Get quotes for up to 100 deliveries within Shippify

Autorizaciones
Cuerpo
companyIdinteger · mín: 1Opcional

Company identifier where the delivery will be created

Example: 2
typestring · enumOpcional

Type of delivery

Default: slotValores posibles:
Respuestas
200
Successful operation
application/json
401
Unauthorized
application/json
post
POST /v2/pricing/quotes/available HTTP/1.1
Host: api.shippify.co
Authorization: Basic username:password
Content-Type: application/json
Accept: */*
Content-Length: 768

{
  "companyId": 2,
  "type": "flex",
  "deliveries": [
    {
      "pickup": {
        "contact": {
          "name": "Iliana Bolaños",
          "email": "iliana@shippify.co",
          "phonenumber": "0998976565"
        },
        "location": {
          "address": "Vicuna Mackenna 6100, La Florida, Region Metropolitana, Chile",
          "instructions": "Unit 1001",
          "lat": -33.511333999,
          "lng": -70.6102933
        }
      },
      "dropoff": {
        "contact": {
          "name": "Iliana Bolaños",
          "email": "iliana@shippify.co",
          "phonenumber": "0998976565"
        },
        "location": {
          "address": "Vicuna Mackenna 6100, La Florida, Region Metropolitana, Chile",
          "instructions": "Unit 1001",
          "lat": -33.511333999,
          "lng": -70.6102933
        }
      },
      "packages": [
        {
          "id": "Product-001",
          "name": "Color box",
          "qty": 4,
          "weight": 5.3,
          "size": "flex",
          "price": 5.3
        }
      ],
      "referenceId": "PO-00012",
      "tags": [
        "Delicate"
      ],
      "extraData": [
        {
          "name": "Invoice",
          "value": "FA-000001"
        }
      ],
      "cod": 22.3
    }
  ]
}
{
  "data": {
    "quotes": {
      "name": "Flex Guayaquil",
      "quoteId": 2067,
      "timeWindows": [
        {
          "pickupStart": 1688682962888,
          "pickupEnd": 1688686562888,
          "dropoffStart": 1688686562888,
          "dropoffEnd": 1688690162888
        }
      ],
      "totalPrice": 12.4,
      "deliveries": [
        {
          "index": 0,
          "price": 12.4,
          "quoteIdReference": 2067,
          "currencySign": "CLP",
          "distance": 10.4,
          "deliveryQuoteId": "scopes:1:SSQ:1688679363143"
        }
      ],
      "type": "flex"
    }
  }
}