DeltaX Client REST HTTP API
  1. route
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. route

Get Route by ID

GET
/route/{routeId}
Retrieve detailed route information including origin and destination facilities, coordinates, distances, and timing data by SAP route code

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
Route 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/route/500059' \
--header 'Authorization: Bearer <token>'
Response Response Example
200 - Success
{
    "message": "Route retrieved successfully",
    "data": {
        "_id": "507f1f77bcf86cd799439016",
        "sapCode": "500059",
        "originName": "WAREHOUSE ORIGIN",
        "originI2Code": "2070603000",
        "originSapCode": "W001",
        "originLng": -99.1332,
        "originLat": 19.4326,
        "destinationName": "WAREHOUSE DESTINATION",
        "destinationI2Code": "2070603001",
        "destinationSapCode": "W002",
        "destinationLng": -99.2,
        "destinationLat": 19.5,
        "distanceKm": 25.5,
        "originTimeHr": 1.5,
        "transitTimeHr": 3,
        "destinationTimeHr": 2,
        "returnTransitTimeHr": 3.5,
        "fullTripTimeHr": 10
    }
}
Modified at 2025-11-21 22:26:35
Previous
List Routes
Next
List Warehouses
Built with