Skip to end of banner
Go to start of banner

Acknowledgement API

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 10 Next »

Outbound | PUT  | {Client’s URL}

Summary

Increff can send an Order Acknowledgement when inventory is available and it is allocated to the order

Description

This API will send list of orders and Fulfillment Location Codes that are in fulfillable state in Increff Omni System to External System.

Below Consolidation Type will also be sent to External system which will specify that the inventory allocated to the order was from which type of location.

Consolidation Types:

  1. ALL : Inventory is allocated from Stores and Warehouses.

  2. STORE : Inventory is allocated from Store only

  3. NONE : Inventory is allocated from Warehouse only

Request

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

Parameter Name

Data Type

Description

Mandatory

consolidationType

String

Enum with possible values ALL,STORE,NONE;

no

orders

object[]

List of orders

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

Response

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

HttpStatus : 200

Parameter Name

Data Type

Description

Mandatory

successOrders

Object[]

List of orders which were successfully updated on the channel

yes

  • No labels