Ordoro · Example Payload

Ordoro Post V3 Order Order_Number Split

Split an Order

Order ManagementInventory ManagementShippingDropshippingEcommerceMulti-ChannelFulfillmentLogistics

Ordoro Post V3 Order Order_Number Split is an example object payload from Ordoro, with 5 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

descriptionmethodpathcontentTypeexample

Example Payload

Raw ↑
{
  "description": "Split an Order",
  "method": "POST",
  "path": "/v3/order/{order_number}/split",
  "contentType": "application/json",
  "example": {
    "example": {
      "value": {
        "split_orders": [
          {
            "lines": [
              {
                "line_id": 1234,
                "quantity": 1
              },
              {
                "line_id": 987,
                "quantity": 0
              },
              {
                "line_id": 777,
                "quantity": 3
              }
            ]
          },
          {
            "lines": [
              {
                "line_id": 1234,
                "quantity": 1
              },
              {
                "line_id": 987,
                "quantity": 0
              },
              {
                "line_id": 777,
                "quantity": 3
              }
            ]
          }
        ]
      }
    }
  }
}