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

    WindowAvailabilityResponse

    Response containing window availability with pagination information

    {
        "message": "Window availability retrieved successfully",
        "data": {
            "windows": [
                {
                    "_id": "507f1f77bcf86cd799439022",
                    "order": 1,
                    "weekDay": [
                        "Monday"
                    ],
                    "startTime": "08:00",
                    "endTime": "17:00",
                    "durationMins": 540,
                    "repetition": "weekly",
                    "simpleLoad": true,
                    "simpleLoadCount": 5,
                    "simpleUnLoad": true,
                    "simpleUnLoadCount": 3,
                    "simpleLoadUnLoad": false,
                    "simpleLoadUnLoadCount": 0,
                    "simpleExpeditionTypes": "TRUCK",
                    "fullLoad": true,
                    "fullLoadCount": 2,
                    "fullUnLoad": true,
                    "fullUnLoadCount": 2,
                    "fullLoadUnLoad": true,
                    "fullLoadUnLoadCount": 1,
                    "fullExpeditionTypes": "FULL_TRUCK",
                    "scheduledTrips": [
                        {
                            "assignmentNumber": "0017228764",
                            "loadingDate": "2024-01-15T10:30:00.000Z"
                        }
                    ]
                }
            ],
            "pagination": {
                "page": 1,
                "size": 20,
                "totalWindows": 15,
                "totalPages": 1,
                "hasNextPage": false,
                "hasPreviousPage": false
            }
        }
    }
    Built with