Create Shipment Order
logiwa_create_shipment_orderCreate a new outbound shipment order in Logiwa WMS by supplying required order code, type, date, currency, and at least one line item; the tool returns the new order identifier and status.
Instructions
Create a new shipment (outbound) order.
Required: code, shipmentOrderType, shipmentOrderDate (ISO date-time), currencyId, shipmentOrderLineList (>=1 line). Provide customer / shipmentAddress / billingAddress as objects matching the Logiwa API. Resolve type/warehouse/currency values with logiwa_lookup. Any other fields go in additional_fields.
Returns: the create response (new order identifier / status).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| code | Yes | Unique order code (required). | |
| note | No | ||
| client | No | Client display name (alternative to clientIdentifier). | |
| customer | No | Customer block (name, email, phone, etc.) per the Logiwa API. | |
| warehouse | No | Warehouse code (alternative to warehouseIdentifier). | |
| currencyId | Yes | Currency id (required). | |
| billingAddress | No | Billing address block per the Logiwa API. | |
| shipmentAddress | No | Shipment/destination address block per the Logiwa API. | |
| clientIdentifier | No | ||
| additional_fields | No | Escape hatch for any extra Logiwa request-body fields not exposed as typed parameters above. Keys must match the Logiwa API's camelCase field names; merged verbatim into the request body. | |
| shipmentOrderDate | Yes | Order date, ISO date-time (required). | |
| shipmentOrderType | Yes | Shipment order type name (required). See logiwa_lookup. | |
| warehouseIdentifier | No | ||
| expectedShipmentDate | No | ISO date-time. | |
| shipmentOrderLineList | Yes | Order line products (required, >=1). |