Start: Load Step (get-job) → init trolly_ID/HU_ID/trolly_place_ID → Trolly Step (or NoOpenOrders if empty). Alternative: Load Job for Pre Picking Box Step → openJobs>0 → Trolly; else → Start Step (open_jobs → Trolly). Trolley & HUs: Scan trolley → Set HU Step (box counts S/M/L) → Done → HU ID Step. Scan one HU per job_customer → Trolly Place ID Step. Scan one position per job_customer → Check Trolly Place ID (router). If all positions set → Prepare Storage; else → back to HU ID Step. Picking: Prepare Storage (router): all check → Completion; else first uncompleted → Storage Step (storage + article). Scan storage_scan: match + stock≥1 → Inventory Step (Yes/No); match → Quantity Confirm; wrong → negative_feedback. Inventory: Yes → Quantity Confirm. No → Inventory Count (-1/+1, ENTER) → Quantity Confirm or next Storage. Quantity confirm: Scan trolly_place_ID: last article at location → Prepare Storage; more articles → Scan Storage Step (scan storage again → Part_Quantity Confirm). Wrong scan → negative_feedback. Scan Storage Step: Shown after Quantity Confirm when more articles at same location; scan storage → Part_Quantity Confirm. Part_Quantity Confirm: Scan position: last → Prepare; more → Scan Storage Step. Wrong → negative. Completion: Prepare when all check → Completion Step. Save → api.workflow.done(). Options (OPTION): From any step: BACK to previous or Stop Working / Skip article / Skip order / Confirm Storage / No Trolley (→ Set HU) etc. as per each Options step.
REST API — Step by Step
Each card = one workflow step. Endpoints are listed one after another. Configure as HTTP Data Connection identifiers in Productivity Cloud.
Main flow
1Load Step (Initial)
GETget-jobLoad open picking job and all pick lines
2Trolly Step
POSTassign-trolleyRegister trolley ID for multi-order picking
3HU ID Step
POSTassign-huAssign handling unit to trolley / order
4Trolly Place ID Step
POSTassign-trolley-placeAssign pick target position on trolley
5Prepare Storage Step
GETget-pick-lineLoad current line: storage, quantity, article, stock
POSTcomplete-jobClose picking job and send results to ERP
6Storage Step
GETget-pick-lineLoad current line: storage, quantity, article, stock
POSTassign-picking-boxAssign container to order / pick job
19Options Storage Step1
POSTconfirm-without-scanConfirm article without barcode scan
20Options Storage Step2
POSTskip-articleSkip current article, move to next line
POSTskip-orderSkip entire order in multi-order job
21Options Picking Step
POSTskip-articleSkip current article, move to next line
POSTskip-orderSkip entire order in multi-order job
22Options Quantity Confirm Step
POSTskip-articleSkip current article, move to next line
POSTskip-orderSkip entire order in multi-order job
23Options Part_Quantity Confirm Step
POSTskip-articleSkip current article, move to next line
POSTskip-orderSkip entire order in multi-order job
24Options Inventory Step
PATCHupdate-stock-countSubmit corrected stock count after inventory
25Options Inventory Count Step
PATCHupdate-stock-countSubmit corrected stock count after inventory
Technical Reference — CSV Multi Order Single
Single order with trolley and HU assignment. See the step-by-step section above for which endpoint belongs to which workflow step.
1 · HTTP Data Connection setup
Connection type
HTTP Data Connection
Identifier
e.g. erp-system — referenced as dataConnection in the workflow
Base URL
Customer web service URL (HTTPS)
Authentication
None, Basic, Bearer, or OAuth
Endpoint identifier
Unique name per operation (must match step cards above)
Endpoint URL
Relative path, e.g. /orders/{orderId}/lines/{lineId}
Pre / post processing
Transform request and map response to NIMMSTA job format
requestOverride
Workflow can override body, headers, params, query (JavaScript)
Async rules:await works in loadData pre/post processing, onStopJobCode, and api.workflow.runActionCodeAsync(...). Step handlers (onScan, onButtonPress) are synchronous — use a loading step or workflow actions for API calls.