This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

TI-API: Backlog API (backlog/orders) separate orders

Part Number: TI-API

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"
                }
              ]
            }
          ]
        },
		

      ]
    }
  ],
}

  • Hello Anna,

    Thanks for reaching out!

    Usually we don't split a Purchase order in two separate orders.

    There are only two cases when this would happen:

    1) Either you have a Purchase order with more than 100 line items

    2) Or you have different end customers

    Just let me know if you have any further questions.

    Best regards,

    Tobi

**Attention** This is a public forum