DeltaX Client REST HTTP API
  1. Schemas
DeltaX Client REST HTTP API
  • Webhook Integration Documentation
  • trip
    • Get Trip by ID
    • Update Trip
    • Create Incidence
    • List Trips
  • route
    • List Routes
    • Get Route by ID
    • List Warehouses
    • Get Warehouse by ID
    • List Window Availability
  • company
    • List Transport Companies
    • Get Transport Company by ID
  • fleet
    • List Transport Units
    • Get Transport Unit by ID
    • List Truckers
    • Get Trucker by ID
    • List Dollies
    • Get Dolly by ID
  • rates
    • List Rates
  • Schemas
    • Schemas
      • IncidenceCreate
      • TripUpdate
      • TripUpdateResponse
      • ClientTripUpdate
      • ClientIncidence
      • IncidenceCreateResponse
      • Trip
      • TripResponse
      • TripsListResponse
      • PaginationInfo
      • Route
      • RouteResponse
      • RoutesListResponse
      • Warehouse
      • WarehouseResponse
      • WarehousesListResponse
      • TransportCompany
      • TransportCompanyResponse
      • TransportCompaniesListResponse
      • TransportUnit
      • TransportUnitResponse
      • TransportUnitsListResponse
      • Trucker
      • TruckerResponse
      • TruckersListResponse
      • Dolly
      • DollyResponse
      • DolliesListResponse
      • WindowAvailability
      • WindowAvailabilityResponse
    • Response
      • Success
      • SuccessCreated
      • InternalServerError
      • BadRequest
      • NotFound
      • Unauthenticated
      • TripUpdateSuccess
      • IncidenceCreateSuccess
      • TripSuccess
      • TripsListSuccess
      • RouteSuccess
      • RoutesListSuccess
      • WarehouseSuccess
      • WarehousesListSuccess
      • TransportCompanySuccess
      • TransportCompaniesListSuccess
      • TransportUnitSuccess
      • TransportUnitsListSuccess
      • TruckerSuccess
      • TruckersListSuccess
      • DollySuccess
      • DolliesListSuccess
      • WindowAvailabilitySuccess
      • Unauthorized
  1. Schemas

TripsListResponse

Response containing list of trips with pagination information

{
    "message": "Trips retrieved successfully",
    "data": {
        "trips": [
            {
                "TKNUM": "0017228764",
                "F_ELIM": "",
                "ERDAT": "20240115",
                "ERZET": "103000",
                "SIGNI": "SIGNATURE001",
                "SHTYP": "TYPE001",
                "AEDAT": "20240115",
                "AEZET": "103000",
                "ROUTE": "500059",
                "BEZEI_R": "ROUTE DESCRIPTION",
                "KNOTA": "ORIGIN001",
                "KNOTZ": "DEST001",
                "WERKS_O": "2070603000",
                "WERKS_D": "2070603001",
                "VSART": "01",
                "BEZEI_V": "Standard Shipping",
                "TDLNR": "0010007352",
                "NAME_TRANS": "TRANSPORT COMPANY SA",
                "transportCompanyName": "TRANSPORT COMPANY SA",
                "truckPlate": "83AH5N",
                "truckEconomicNumber": "TRUCK001",
                "trailerPlate": "TRAIL001",
                "trailerEconomicNumber": "TRAILER001",
                "secondTrailerPlate": "TRAIL002",
                "secondTrailerEconomicNumber": "TRAILER002",
                "truckerName": "Juan Perez",
                "truckerLicenseNumber": "DF001100131",
                "assignmentDate": "2024-01-15T10:30:00.000Z",
                "originEtaDate": "2024-01-15T10:30:00.000Z",
                "originAtaDate": "2024-01-15T10:35:00.000Z",
                "originExternalEntryDate": "2024-01-15T10:40:00.000Z",
                "originInternalEntryDate": "2024-01-15T10:45:00.000Z",
                "originInternalLeftDate": "2024-01-15T11:00:00.000Z",
                "destinationEtaDate": "2024-01-15T15:30:00.000Z",
                "destinationAtaDate": "2024-01-15T15:35:00.000Z",
                "destinationExternalEntryDate": "2024-01-15T15:40:00.000Z",
                "destinationInternalEntryDate": "2024-01-15T15:45:00.000Z",
                "destinationInternalLeftDate": "2024-01-15T16:00:00.000Z",
                "tripStatus": "in_transit",
                "plannedPlate": "PLANNED001",
                "planDate": "2024-01-15T00:00:00.000Z",
                "priority": "1",
                "originEtaStatus": "on_time",
                "originAtaStatus": "arrived",
                "destinationEtaStatus": "pending",
                "destinationAtaStatus": "pending",
                "hasGpsLocations": true,
                "operationStatus": "pending",
                "entregas": [
                    {}
                ],
                "url": "string",
                "incidences": [
                    {
                        "stage": "load",
                        "incident": "others",
                        "offender": "others",
                        "observation": "noForklift",
                        "comment": "DEMORA EN DOCUMENTOS"
                    }
                ]
            }
        ],
        "pagination": {
            "page": 1,
            "size": 20,
            "totalTrips": 150,
            "totalPages": 8,
            "hasNextPage": true,
            "hasPreviousPage": false
        }
    }
}
Built with