List stages of a map
GET /api/v1/maps/{id}/stagesAdd a stage
POST /api/v1/maps/{id}/stages
{
"stage": "Pick",
"order": 1,
"cycle_time_hrs": 0.05,
"wait_time_hrs": 0.1,
"value_add": true,
"work_type": "valuable"
}Update a stage
PATCH /api/v1/maps/{id}/stages/{stage_id}Send only the fields you want to change.
Reorder
POST /api/v1/maps/{id}/stages/reorder
{
"stage_ids": [12, 15, 8, 33]
}Pass the stage IDs in the desired new order.