API - Scheduled Trips


Overview

The endpoint is a non-editable list of Pallets.

Endpoint name

scheduledTrips

Source table

WiFi Scheduled Trip

Fixed view

Shows the whole list, in order of departure date/time.

Requests allowed

GET, PATCH

Primary key

No.

Record ID

no

Child Objects

Available with $expand

transportUnits- the transport units that have been allocated to this trip

salesAgreements - the sales agreements that have been linked to this trip

Procedures

None

Data

Field List

Property

Type

Format

Description


1

systemId

string

uuid

The GUID of the record.


2

number

integer



PRIMARY KEY Record ID

3

shippingAgentCode

string




4

shippingAgentName

string




5

status

string

enum



6

loadingStatus

string




7

isExport

string




8

transportMethod

string




9

departureDate

string

date



10

departureTime

string

time



11

arrivalDate

string

date



12

arrivalTime

string

time



13

numberOfAgreements

integer


The number of delivery agreements in this trip.


14

numberOfTransportUnits

integer


The number of transport units in this trip.


15

lastModified

string




16

transportUnits

array


A list of the transport units. Properties are as can seen in the documentation for that object: API - Transport Units



Object Example

JSON
{
    "number": "TRIP-01",
    "systemId": "5afe5e66-410b-f111-b02e-cfedda509304",
    "shippingAgentCode": "DHL",
    "shippingAgentName": "DHL Systems, Inc.",
    "status": "Open",
    "loadingStatus": " ",
    "isExport": false,
    "transportMethod": "",
    "departureDate": "2026-02-16",
    "departureTime": "00:00:00",
    "arrivalDate": "2027-01-17",
    "arrivalTime": "00:00:00",
    "numberOfAgreements": 1,
    "numberOfTransportUnits": 2,
    "lastModified": "2026-02-16T14:11:54.78Z",
    "transportUnits": []
  }

Usage

For example to read scheduled trips with transport units:

JSON
GET .../scheduledTrips?$expand=transportUnits