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

Get Dolly by ID

GET
/dolly/{dollyId}
Retrieve detailed dolly information including specifications, company details, insurance information, and associated documentation by internal 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
Dolly 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/dolly/66bfb18c40f4231d20eb2153' \
--header 'Authorization: Bearer <token>'
Response Response Example
200 - Success
{
    "message": "Dolly retrieved successfully.",
    "data": {
        "_id": "66bfb18c40f4231d20eb2153",
        "economicNumber": "DOLLY001",
        "companyName": "TRANSPORT COMPANY SA DE CV",
        "type": "CONVERTIBLE",
        "numAxis": 2,
        "numWheelst": 8,
        "year": 2020,
        "brand": "GREAT DANE",
        "insuranceProviderCode": "INS001",
        "insurancePolicyNumber": "POL789012345",
        "serie": "SERIES123456",
        "documents": [
            {
                "type": "registration",
                "url": "https://documents.example.com/reg123456.pdf"
            },
            {
                "type": "insurance_policy",
                "url": "https://documents.example.com/pol789012.pdf"
            }
        ]
    }
}
Modified at 2025-11-21 22:26:35
Previous
List Dollies
Next
List Rates
Built with