Retrieve a tracking

GET/shipping/{connection_id}/tracking/{id}

Parameters

fieldsstring array
Fields to return
rawstring
Raw parameters to include in the 3rd-party request. Encoded as a URL component. eg. raw parameters: foo=bar&zoo=bar -> raw=foo%3Dbar%26zoo%3Dbar
connection_idstring required
ID of the connection
idstring required
ID of the Tracking

Returns

idstring
Unique identifier for this tracking object
created_atdate
The date that this tracking object was created (ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
updated_atdate
The last date that this tracking object was updated (ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
shipment_idstring
Reference to the shipment
tracking_numberstring
Tracking number for the shipment
status enum
Valid values:
"PENDING"
"PROCESSING"
"IN_TRANSIT"
"DELIVERED"
"EXCEPTION"
Current status of the shipment
events array
Array of tracking events
estimated_deliverydate
Estimated delivery date
actual_delivery_atdate
Actual delivery timestamp (ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
status_descriptionstring
Human-readable status
carrier_idstring
Reference to the carrier
carrier_status_codestring
Carrier's status code
carrier_status_descriptionstring
Carrier's status description
const options = {
  method: 'GET',
  url: 'https://api.unified.to/shipping/5de520f96e439b002043d8dc/tracking/5de520f96e439b002043d8d8',
  headers: {
    authorization: 'bearer .....'
  },
  params: {
    fields: '',
    raw: '',
  }
};

const results = await axios.request(options);
Are we missing anything? Let us know
Was this page helpful?