Versions Compared

Key

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

Inbound | POST |

Summary

This API is used to create a picklist for orders which are to be picked together.

Description

This API will release a picklist for a group of orders in USP and return a unique picklist ID for that.

 Request

Code Block
{
    "channelId": "Myntra",
    "locationCode": "LOC1",
    "pickListCode": "externalPickListCode1",
    "orderList":[
      {
        "orderCode": "Order12345"
      }
    ]
}

...

Parameter Name

Data Type

Description

Mandatory

channelId

string

Channel for which the picklist is being released

yes

locationCode

string

location for which the picklist is being released

yes

pickListCode

string

external picklist reference. This will me mapped in USP for reference

no

orderList

object[]

array of orders to be released

yes

orderList.orderCode

string

marketPlace orderId

yes

 Response

Code Block
{
    "pickListId": 123
}

...