DeltaX Client REST HTTP API
    • Webhook Integration Documentation
    • trip
      • Get Trip by ID
      • Update Trip
      • Create Incidence
      • List Trips
    • route
      • List Routes
      • Get Route by ID
      • List Warehouses
      • Get Warehouse by ID
      • List Window Availability
    • company
      • List Transport Companies
      • Get Transport Company by ID
    • fleet
      • List Transport Units
      • Get Transport Unit by ID
      • List Truckers
      • Get Trucker by ID
      • List Dollies
      • Get Dolly by ID
    • rates
      • List Rates
    • webhook
      • List Webhook Callback Registrations
      • Update Webhook Callback Registration
    • Schemas
      • Schemas
      • 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
      • 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
      • WebhookRegistration
      • WebhookRegistrationUpdate
      • CallbackRegistrationsListResponse
      • CallbackRegistrationUpdateResponse

    TruckersListResponse

    Response containing list of truckers with pagination information

    {
        "message": "Truckers retrieved successfully",
        "data": {
            "truckers": [
                {
                    "_id": "507f1f77bcf86cd79943901e",
                    "driverLicense": "DF001100131",
                    "firstName": "Juan",
                    "lastName": "Perez",
                    "documentId": "CURP123456789",
                    "birthDate": "1985-03-15T00:00:00.000Z",
                    "driverLicenseCategory": "FEDERAL",
                    "driverLicenseExpirationDate": "2026-12-31T23:59:59.000Z",
                    "documents": [
                        {
                            "type": "driver_license",
                            "url": "https://documents.example.com/license123456.pdf"
                        }
                    ]
                }
            ],
            "pagination": {
                "page": 1,
                "size": 20,
                "totalTruckers": 275,
                "totalPages": 14,
                "hasNextPage": true,
                "hasPreviousPage": false
            }
        }
    }
    Built with