Help Centre / API / Stages endpoints

Stages endpoints

Updated just now · 6 views ·

List stages of a map

GET /api/v1/maps/{id}/stages

Add 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.

Was this article helpful?

0 found this helpful