Versions Compared

Key

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

Inbound | POST | /usp/picklist/create

Summary

This API is used to create a picklist for orders which are to be picked together as part of a Pick Order Group (POG).

Description

This API will release a the picklist for a group of orders belonging to a Pick Order Group in USP and return a unique picklist ID for that to the external system.

 Request

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

...

Parameter Name

Data Type

Description

Mandatory

channelName

string

Channel for which the picklist is being released

yesYes

locationCode

string

location for which the picklist is being released

yesYes

pickListCode

string

external External picklist reference identifier.

This will me be mapped in USP for reference

noNo

orderList

object[]

array of orders to be released

yesYes

orderList.orderCode

string

marketPlace orderId

yesYes

 Response

Code Block
{
    "pickListId": 123
}

...

Parameter Name

Data Type

Description

Mandatory

pickListId

int

This is Internal picklistId reference generated in USP

yesYes

 

HttpStatus : 200