Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagejson
{
  "consolidationType": "STORE",
  "orders": [
    {
      "locationCode": "Wid234",
      "orderCode": "H19304030003"
    },
    {
      "locationCode": "Wid234",
      "orderCode": "H1930403003"
    }
  ]
}

...

Parameter Name

Data Type

Description

Mandatory

orders

object[]

List of orders

yes

consolidationType

String

Possible values:

ALL, STORE

yes

locationCode

String

Location code of warehouse from where this order will get fulfilled(in case of consolidation type ALL, there will be no location code sent)

no

orderCode

String

Unique code used by channel to identify the order

yes

Consolidation type ALL

Payload contains orders from all locations including stores and warehouses.

Consolidation type Store

...

Response

Code Block
languagejson
{
  "successOrders": [
    {
      "locationCode": "Wid234",
      "orderCode": "H19304030003"
    },
    {
      "locationCode": "Wid234",
      "orderCode": "H1930403003"
    }
  ]
}

...