Tool/software:
I've founded the following details in the documentation
"You may receive multiple schedule lines with estimated ship dates in the order create/retrieve response depending on the availability of the product. Estimated ship dates will be included in the order create response and may be different than the customer requested delivery date. Note: Only 1 schedule line per line item (customer request date) is supported at this time"
Is it mean that I can send only one row in the schedules array?
schedules": [ { "requestedQuantity": 2000, "requestedDeliveryDate": "2025-05-01" }
Or something has changed now and I can do it like this?
schedules": [ { "requestedQuantity": 1000, "requestedDeliveryDate": "2025-01-01" }, { "requestedQuantity": 1000, "requestedDeliveryDate": "2025-05-01" } ]