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

Warehouse

Warehouse information with location, address details, geofences, and operational windows

{
    "_id": "507f1f77bcf86cd799439018",
    "I2Code": "2070603000",
    "sapCode": "WH001",
    "name": "MAIN DISTRIBUTION CENTER",
    "countryName": "Mexico",
    "stateCode": "MX",
    "stateName": "Mexico",
    "municipalityCode": "015",
    "municipalityName": "Ecatepec de Morelos",
    "localityCode": "0001",
    "localityName": "Ecatepec de Morelos",
    "colonyCode": "0001",
    "colonyName": "Centro",
    "postalCode": "55000",
    "address": "Av. Central 123",
    "street": "Av. Central",
    "externalNumber": "123",
    "internalNumber": "A",
    "lng": -99.0608,
    "lat": 19.6073,
    "geofences": [
        {
            "_id": "507f1f77bcf86cd799439020",
            "name": "Main Entrance",
            "type": "entry",
            "points": [
                {
                    "lng": -99.0608,
                    "lat": 19.6073
                }
            ]
        }
    ],
    "spaces": [
        {
            "_id": "68123e49da93745fb7b04b99",
            "order": 1,
            "operationType": [
                "string"
            ]
        }
    ],
    "windows": [
        {
            "_id": "507f1f77bcf86cd799439021",
            "order": 1,
            "weekDay": [
                "Monday"
            ],
            "startTimeWindowOne": "08:00",
            "endTimeWindowOne": "17:00",
            "startTimeWindowTwo": "19:00",
            "endTimeWindowTwo": "20:00",
            "repetition": "weekly",
            "typeFleet": [
                "string"
            ],
            "typeOfTrucks": [
                "string"
            ],
            "totalCapacity": 10,
            "dryBoxCapacity": 12,
            "isAvailable": true
        }
    ]
}
Built with