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

List Dollies

GET
/dolly
Retrieve available dollies with pagination support, ordered by economic number ascending. Returns comprehensive dolly information including specifications, company details, insurance information, and associated documentation.

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
Dollies 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/dolly?page=1&size=20' \
--header 'Authorization: Bearer <token>'
Response Response Example
200 - Success
{
    "message": "Dollies retrieved successfully",
    "data": {
        "dollies": [
            {
                "_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"
                    }
                ]
            },
            {
                "_id": "66bfb18c40f4231d20eb2154",
                "economicNumber": "DOLLY002",
                "companyName": "LOGISTICA INTEGRAL SA DE CV",
                "type": "REMOVABLE GOOSENECK",
                "numAxis": 3,
                "numWheelst": 12,
                "year": 2019,
                "brand": "FONTAINE",
                "insuranceProviderCode": "INS002",
                "insurancePolicyNumber": "POL987654321",
                "serie": "SERIES789012",
                "documents": [
                    {
                        "type": "registration",
                        "url": "https://documents.example.com/reg789012.pdf"
                    },
                    {
                        "type": "insurance_policy",
                        "url": "https://documents.example.com/pol987654.pdf"
                    }
                ]
            }
        ],
        "pagination": {
            "page": 1,
            "size": 20,
            "totalDollies": 85,
            "totalPages": 5,
            "hasNextPage": true,
            "hasPreviousPage": false
        }
    }
}
Modified at 2025-11-21 22:26:35
Previous
Get Trucker by ID
Next
Get Dolly by ID
Built with