FulfillmentOrderMove
Moves a fulfillment order to a new location.
Procedure-Specific Information
The following input can accept either a temporary table name or a JSON aggregate that matches the structure of the referenced table as a value.
- FulfillmentOrderLineItems references the FulfillmentOrderLineItemInputs temporary table.
FulfillmentOrderLineItemInputs Temporary Table Columns
| Column Name | Type | Description |
| Id | String | The ID of the fulfillment order line item. |
| Quantity | Int | The quantity of the line item. |
Input
| Name | Type | Required | Description |
| FulfillmentOrderId | String | True | The ID of the fulfillment order to move. |
| NewLocationId | String | True | The ID of the new location to move the fulfillment order to. |
| FulfillmentOrderLineItems | String | False | Line items to be moved. |
Result Set Columns
| Name | Type | Description |
| Success | Boolean | Indicates whether or not the operation executed successfully. |
| Details | String | Any extra details on the operation's execution. |
| MovedFulfillmentOrderId | String | The ID of the moved fulfillment order. |
| RemainingFulfillmentOrderId | String | The ID of the remaining fulfillment order at the original location. |
| OriginalFulfillmentOrderId | String | The ID of the original fulfillment order. |