Optimize Engine
  1. Schemas
Optimize Engine
  • Health
    • Check health
      GET
  • Optimization
    • Optimize Sync Process
      POST
    • Optimization Engine Asynchronous Process
      POST
    • Get Optimization Status
      GET
  • Authentication
    • User Login
      POST
    • User Logout
      POST
    • User Logout All
      POST
  • Schemas
    • Schemas
      • Configuration
      • Location
      • Vehicle
      • Job
      • OptimizeRequest
      • Summary
      • Stop
      • Route
      • OptimizeResponse
      • Error
      • OptimizationCreateResponse
      • OptimizationStatusResponse
      • LoginRequest
      • LoginResponse
  1. Schemas

Job

{
    "id": "pickup_wh_intirub_halim",
    "type": "DELIVERY",
    "location_id": "warehouse_intirub_halim",
    "demands": {
        "weight": 120000,
        "volume": 2.5,
        "pallets": 4
    },
    "time_window": {
        "start": "2025-09-14T12:00:00+07:00",
        "end": "2025-09-14T16:00:00+07:00"
    },
    "service_time": 60,
    "required_skills": [
        "refrigerated"
    ],
    "priority": 1,
    "predecessor_job_ids": [
        "job_123"
    ]
}
Built with