Reach It
- Method:
POST - Path:
/api/map - Base URL:
http://openhaldex.local(or controller IP) - Response format:
JSON
API Endpoint
Replaces active map bins and lock table.
POST/api/maphttp://openhaldex.local (or controller IP)JSONNone
JSON with speedBins[9], throttleBins[7], lockTable[7][9]. lock values clamped 0..100.
Receive: JSON: {"ok":true}
Parse: Rejects wrong dimensions/rows.
400 invalid json/map sizes; 200 success
curl -s -X POST "http://openhaldex.local/api/map" -H "Content-Type: application/json" -d '{...}'
This section is intentionally unique for POST /api/map. Focus area:
full map replacement with validation of table dimensions and values. When integrating OpenHaldex at scale, this endpoint should be treated as a dedicated
workflow step rather than a generic HTTP action.
Operational scenario: Send a validated matrix payload, then re-read map and status to confirm firmware accepted the exact structure.
Domain vocabulary: map-upload, matrix-shape, bin-count, cell-clamp, table-sanitize, write-apply, active-map, draft-commit, table-atomicity, postwrite-read.
POST /api/map and capture status code + raw response./api/status) to verify runtime convergence.await fetch('/api/map',{method:'POST',headers:{'Content-Type':'application/json'},body:JSON.stringify({map})});
Unique endpoint guidance like this helps prevent duplicate-content clustering while remaining genuinely useful for developers working on OpenHaldex integrations for haldex controller, VW AWD controller, and Audi AWD controller environments.
Preview the real OpenHaldex firmware UI in your browser with simulated live CAN traffic and interactive pages for tuning, diagnostics, logs, setup, and OTA workflows.