Integration lifecycle
oneGRID Cloud calls your adapter at specific moments of the warehouse workflow. This page shows when each endpoint is called, so you can decide which ones your integration needs — every step links to its reference entry.
Work order intake
How work orders get from the external system into oneGRID Cloud — fetched as a list, looked up by a scanned code, or parsed from an uploaded file. Work orders can also be pushed proactively by the external system.
Reference: GET /WorkOrders · GET /WorkOrders/Code · POST /WorkOrders/File
Pushing work orders into oneGRID Cloud
Besides being fetched, work orders (and cancellations) can be pushed by the external system: it calls an inbound endpoint on the adapter, and the adapter forwards the orders to oneGRID Cloud. The same push channel is used for stock and item data.
The inbound push endpoints — their routes, payloads, and authentication — are defined per adapter deployment, matched to the external system's capabilities, and are therefore not part of this generic reference. If your integration should push rather than be polled, define the inbound contract together with CAPTRON when the adapter is set up.
Picking an order
During single-order picking, oneGRID Cloud confirms every completed step and lets the adapter reshape the running order.
Reference: ConfirmWorkOrderStep · AttachWorkOrder · CancelWorkOrderRequest · GetReport
Sorting on the Put Wall
During Put Wall sorting, a scanned batch code resolves to its work orders; every placement is confirmed to the adapter.
Reference: GET /WorkOrders/ForPutWall/{code} · POST /WorkOrders/ForPutWall · CancelPutWallItem
Multi-order picking with a PickCart
During PickCart picking, each pick is confirmed per cart container; at the end the containers are relocated to their destinations.
Reference: Cart ConfirmWorkOrderStep · RelocateCartContainers
Exporting work orders
When a user builds a work order export file, oneGRID Cloud asks the adapter which extra columns it offers, and — only for the columns actually selected — what to put in them.
Reference: WorkOrderExportColumns · WorkOrderExportValues · WorkOrderExternalIndexableValueLabel
Item master data
Independent of the flows above, oneGRID Cloud fetches item master data on demand — single lookups, file imports, and product images. See Item endpoints.