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

Get a tracking link

AnteriorPrint delivery labelsSiguienteAttach documents to a delivery

Última actualización hace 12 meses

This endpoint allows you to generate a secure tracking link with a unique token that matches the recipient's information.

A secure tracking URL with a token is needed so that recipients are the only ones who can view the link on their devices.

📄

Get tracking link

get

Get tracking link for a delivery.

Autorizaciones
Parámetros de ruta
idstringRequerido

Identifier or reference Id of the delivery you want the link for.

Respuestas
200
Successful operation
application/json
401
Unauthorized
application/json
get
GET /v1/deliveries/token/{id} HTTP/1.1
Host: api.shippify.co
Authorization: Basic username:password
Accept: */*
{
  "token": "ThegDpp8VhtbAVw1y7NjSZ",
  "url": "https://api.shippify.co/track/t-pruaas-5063?token=ThegDpp8VhtbAVw1y7NjSZ&ref=server",
  "recipient": {
    "name": "Javier Perez",
    "email": "test-1998@hotmail.com"
  }
}