DeltaX Client REST HTTP API
  1. trip
DeltaX Client REST HTTP API
  • Webhook Integration Documentation
  • trip
    • Get Trip by ID
      GET
    • Update Trip
      PUT
    • Create Incidence
      POST
    • List Trips
      GET
  • route
    • List Routes
      GET
    • Get Route by ID
      GET
    • List Warehouses
      GET
    • Get Warehouse by ID
      GET
    • List Window Availability
      GET
  • company
    • List Transport Companies
      GET
    • Get Transport Company by ID
      GET
  • fleet
    • List Transport Units
      GET
    • Get Transport Unit by ID
      GET
    • List Truckers
      GET
    • Get Trucker by ID
      GET
    • List Dollies
      GET
    • Get Dolly by ID
      GET
  • rates
    • List Rates
      GET
  • 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. trip

List Trips

GET
/trip
Retrieve available trips with pagination support, ordered by loading date descending. Returns comprehensive trip information including assignments, timing, and status data.

Request

Authorization
Bearer Token
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
or
Query Params

Responses

🟢200OK
application/json
Trips have been successfully retrieved with pagination
Body

🟠400Bad Request
🟠401Unauthorized
🟠403Forbidden
🟠404Not Found
🔴500Internal Server Error
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://fmsapi.deltax.la/clients/trip?page=1&size=20' \
--header 'Authorization: Bearer <token>'
Response Response Example
200 - Success
{
    "message": "Trips retrieved successfully",
    "data": {
        "trips": [
            {
                "TKNUM": "0017228764",
                "ROUTE": "500059",
                "BEZEI_R": "ROUTE DESCRIPTION",
                "WERKS_O": "2070603000",
                "WERKS_D": "2070603001",
                "TDLNR": "0010007352",
                "NAME_TRANS": "TRANSPORT COMPANY SA",
                "transportCompanyName": "TRANSPORT COMPANY SA",
                "truckPlate": "83AH5N",
                "truckEconomicNumber": "TRUCK001",
                "trailerPlate": "TRAIL001",
                "trailerEconomicNumber": "TRAILER001",
                "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",
                "destinationEtaDate": "2024-01-15T15:30:00.000Z",
                "tripStatus": "in_transit",
                "plannedPlate": "PLANNED001",
                "planDate": "2024-01-15T00:00:00.000Z",
                "priority": "1",
                "operationStatus": "underway",
                "hasGpsLocations": true
            },
            {
                "TKNUM": "0017228765",
                "ROUTE": "500060",
                "BEZEI_R": "ANOTHER ROUTE",
                "WERKS_O": "2070603001",
                "WERKS_D": "2070603002",
                "TDLNR": "0010007353",
                "NAME_TRANS": "ANOTHER TRANSPORT CO",
                "transportCompanyName": "ANOTHER TRANSPORT CO",
                "truckPlate": "84BH6O",
                "truckEconomicNumber": "TRUCK002",
                "trailerPlate": "TRAIL002",
                "trailerEconomicNumber": "TRAILER002",
                "truckerName": "Maria Lopez",
                "truckerLicenseNumber": "DF001100132",
                "assignmentDate": "2024-01-15T11:00:00.000Z",
                "originEtaDate": "2024-01-15T11:00:00.000Z",
                "destinationEtaDate": "2024-01-15T16:00:00.000Z",
                "tripStatus": "assigned",
                "plannedPlate": "PLANNED002",
                "planDate": "2024-01-15T00:00:00.000Z",
                "priority": "2",
                "operationStatus": "pending",
                "hasGpsLocations": false
            }
        ],
        "pagination": {
            "page": 1,
            "size": 20,
            "totalTrips": 150,
            "totalPages": 8,
            "hasNextPage": true,
            "hasPreviousPage": false
        }
    }
}
Modified at 2025-11-21 22:26:35
Previous
Create Incidence
Next
List Routes
Built with