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

Print delivery labels

AnteriorAssign driverSiguienteGet a tracking link

Última actualización hace 12 meses

Warehouses often print labels to stick on each package before dispatching it. You can use this endpoint to generate a PDF file with the labels for one or multiple deliveries.

Tag example

Use cases

Print tags by deliveryID
{
    "deliveryIds":[
        "t-pruaas-4973"
    ]
}
Print tags by referenceID
{
    "referenceIds": [
        "P-0001"
    ]
}

📄
Etiqueta
  • POSTLabel Printing
  • Tag example
  • Use cases

Label Printing

post

Print labels for one or more deliveries.

Autorizaciones
Cuerpo
deliveryIdsstring[]Requerido

Identifiers of the delivery for which you want to print the labels. Only this property will go in the payload.

Example: t-pruaas-4973
referenceIdsstring[]Opcional

Reference identifiers of the delivery for which you want to print the labels. Only this property will go in the payload.

Example: FACT-1234
Respuestas
200
Successful operation
application/pdf
Respuestastring · binary
401
Unauthorized
application/json
post
POST /v2/integrations/deliveries/labels HTTP/1.1
Host: api.shippify.co
Authorization: Basic username:password
Content-Type: application/json
Accept: */*
Content-Length: 62

{
  "deliveryIds": [
    "t-pruaas-4973"
  ],
  "referenceIds": [
    "FACT-1234"
  ]
}
binary