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

Get Trip by ID

GET
/trip/{tripId}
Retrieve a single trip by ID

Request

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

Responses

🟢200OK
application/json
Trip has been successfully retrieved
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/0017228764' \
--header 'Authorization: Bearer <token>'
Response Response Example
200 - Success
{
    "message": "Trip retrieved successfully.",
    "data": {
        "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",
        "originInternalEntryDate": "2024-01-15T10:45:00.000Z",
        "originInternalLeftDate": "2024-01-15T11:00: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,
        "url": "https://fmsapi.deltax.la/l/XDn12Fp",
        "incidences": [
            {
                "stage": "load",
                "incident": "others",
                "offender": "agency",
                "observation": "packagingInPoorCondition",
                "comment": "No se recibio por mal estado"
            }
        ]
    }
}
Modified at 2025-11-23 04:08:40
Previous
Webhook Integration Documentation
Next
Update Trip
Built with