Once an Ordoro order (awaiting fulfillment) is processed in the execution system, we have the following questions on how to correctly handled the updates sent back to Ordoro through the API:
- What API Call should we use if the order is “partially” filled
Example:
[quantity] for [sku] “ABC” = 5 ; Execution system fulfilled 3 units
Is there any concept of backordering or short filling an order line in Ordoro?
-
If the order is 100% filled , are there anyr calls required other than this one below to mark the order as “fulfilled” ?
POST /order/M-20200414-102924/shipping_info
{
“tracking_number”: “1Z59405Y0300111480”,
“cost”: 4.56,
“ship_date”: "2020-04-14T22:07:46”
“shipping_method”: “Parcel”,
“carrier_name”: “UPS”,
“notify_bill_to”: false,
“notify_ship_to”: false,
“notify_cart”: true
} -
If there are multiple tracking numbers for a single order, are we require to relate those tracking number to specific items? If so, how is this handled in the API?
Any help with these design questions would be fantastic!