Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 5 Next »

This page will document the schema for freight status information pushed from Hi-Trans Express.

Contents

Authentication

The Freight Status webhook supports basic authentication over SSL

For HTTP Basic authentication, details can be provided as a username and password/token.

Consignment Status

Status updates can be pushed, in the form of a json document, for several different stages in the freight movement lifetime. These are listed below along with the fields included and an example of each document. All times are local to the event location.

Consignment Created

This is posted when a consignment is created under a customer account within our software, either by import or manual creation.

Attributes

consignmentNo

The unique consignment number assigned to the freight.

consignmentCreatedDate

The date the consignment note was created in our system.

Example

{
  "consignment": {
    "consignmentNo": "ARXC83459009",
    "consignmentCreatedDate": "04-01-2023"
  }
}

Pickup Completed

This is posted when a consignment has been picked up from the sender's address.

Attributes

consignmentNo

The unique consignment number assigned to the freight.

pickupCompletedDateTime

Example

{
  "consignment": {
    "consignmentNo": "ARXC83459009",
    "pickupCompleteDateTime": "04-01-2023 14:30"
  }
}

Delivery Completed

This is posted when a consignment has been delivered to the receiver’s address. This also includes the proof of delivery (POD).

Attributes

consignmentNo

The unique consignment number issigned to the freight.

deliveryCompletedDateTime

The date and time the delivery was completed

deliveredPOD

The proof of delivery copy in PDF format, Base 64 encoded.

Example

{
  "consignment": {
    "consignmentNo": "ARXC83459009",
    "deliveryCompletedDateTime": "04-01-2023 17:30"
    "deliveredPOD": "BASE64PDFHERE"
  }
}

  • No labels