Create Pick List
POST/api/v2/pick-lists
Create a pick list from fulfillment orders at one warehouse. Each order line is allocated to bins (split across bins as needed) and sequenced into a walk path; order lines already on an open pick list are skipped.
Body fields:
- warehouse_id (required) — all orders must be at this warehouse.
- fulfillment_order_ids (required, array) — the orders to pick.
Authentication: Requires Bearer token. Requires the sales_orders.fulfill permission. Returns 422 when the orders have nothing left to pick or no lines match the warehouse.
Request
Responses
- 201
- 401
- 403
- 422
- 429
Created
Response Headers
Unauthenticated — the bearer token is missing, revoked, expired, or malformed. Never retry automatically; fix the credential. See the Errors guide.
Forbidden — the token lacks a required scope, the endpoint is not available to API tokens, or the user behind the token lacks the permission. A human must adjust the token scopes or user permissions; do not retry.
Unprocessable Entity
Response Headers
Rate limited — platform limit is 1,000 requests/min; individual tokens may carry lower limits. Honor the Retry-After header before retrying. See the Rate Limits guide.