Skip to main content

TrackAndTrace

Package tracking and shipment monitoring record.

Represents a tracking entry for shipments handled by carriers, providing linkage between tracking information and carrier services for comprehensive shipment visibility.

type TrackAndTrace {
carrierId: Int
carrier: Carrier
id: String!
createdAt: DateTime!
lastModifiedAt: DateTime!
code: String!
shipmentId: String!
}

Fields

TrackAndTrace.carrierId ● Int scalar

Identifier of the shipping carrier handling the package.

References the logistics company responsible for package transportation and delivery.

TrackAndTrace.carrier ● Carrier object

Retrieve the shipping carrier associated with this tracking record.

Returns the carrier information including service details, coverage areas, and integration settings used for this shipment. Used to display carrier-specific tracking information and branding.

TrackAndTrace.id ● String! non-null scalar

Unique UUID identifier for the tracking record.

Used to reference and update specific tracking events throughout the shipment's journey from pickup to delivery.

TrackAndTrace.createdAt ● DateTime! non-null scalar

Timestamp when the tracking record was initially created in the system.

Indicates when the tracking event was first recorded, used for chronological tracking history.

TrackAndTrace.lastModifiedAt ● DateTime! non-null scalar

Timestamp of the most recent update to the tracking record.

Reflects when tracking information such as status, location, or description was last modified.

TrackAndTrace.code ● String! non-null scalar

Carrier-provided tracking number or reference code.

Unique identifier assigned by the shipping carrier to track the package through their delivery network.

TrackAndTrace.shipmentId ● String! non-null scalar

Reference to the parent shipment being tracked.

Links the tracking information to the specific shipment for comprehensive delivery monitoring.

Returned By

trackAndTrace query ● trackAndTraceCreate mutation ● trackAndTraceUpdate mutation

Member Of

Carrier object ● Shipment object ● TrackAndTraceResponse object