FulfillmentOrderSplit
Splits an existing fulfillment order into separate orders according to specified line items and quantities.
Input
| Name | Type | Description |
| FulfillmentOrderId | String | The unique identifier of the fulfillment order to be split into multiple fulfillment orders. |
| FulfillmentOrderLineItemIDs | String | A comma-separated list of identifiers for the FulfillmentOrderLineItems to be separated from the original fulfillment order. |
| FulfillmentOrderLineItemQuantities | String | A comma-separated list of quantities corresponding to each line item being split from the original fulfillment order. The list order must align with FulfillmentOrderLineItemIDs. |
Result Set Columns
| Name | Type | Description |
| Success | Boolean | Indicates whether the fulfillment order split operation completed successfully. |
| Details | String | Provides additional context, diagnostic messages, or error information about how the split operation was executed. |
| FulfillmentOrderId | String | The identifier of the original fulfillment order after the split operation. |
| RemainingFulfillmentOrderId | String | The identifier of the remaining fulfillment order that retains the unaltered or untransferred items after the split. |
| ReplacementFulfillmentOrderId | String | The identifier of a newly created fulfillment order that replaces the original one when it could not be directly split due to its current state. |