Tool/software:
1) Is it possible that when placing an order via backlog API ([POST] backlog/orders) for a product with a quantity (for example) of 10, it gets split into two separate orders with different order numbers (for example with different scheduledQuantity and requestedQuantity)?
2) I’ve noticed that in the case of the backlog, sometimes when I submit an order ([POST] backlog/orders) containing several different products, the response splits it into multiple separate orders with different order numbers. Could you explain in which cases the order is split like this? With the Store API, a single order is always returned.
"orders": [ { "orderNumber": "1001", "orderDate": "2023-04-05 14:31:16", "customerPurchaseOrderNumber": "TestPO-01", "orderStatus": "OPEN", "lineItems": [ { "tiLineItemNumber": "000010", "tiPartNumber": "SN74LS00N", "schedules": [ { "requestedQuantity": 3, "requestedDeliveryDate": "2025-05-01", "confirmations": [ { "tiScheduleLineNumber": "0002", "scheduledQuantity": 3, "estimatedShipDate": "2025-04-25", "estimatedDeliveryDate": "2025-05-01" } ] } ] }, ] }, { "orderNumber": "1002", "orderDate": "2023-04-05 14:31:16", "customerPurchaseOrderNumber": "TestPO-01", "orderStatus": "OPEN", "lineItems": [ { "tiLineItemNumber": "000010", "tiPartNumber": "SN74LS00N", "schedules": [ { "requestedQuantity": 7, "requestedDeliveryDate": "2026-05-01", "confirmations": [ { "tiScheduleLineNumber": "0002", "scheduledQuantity": 7, "estimatedShipDate": "2026-04-25", "estimatedDeliveryDate": "2026-05-01" } ] } ] }, ] } ], }