Skip to end of banner
Go to start of banner

Create Picklist for Orders

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 4 Next »

Inbound | POST | /usp/picklist/create

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

{
    "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

{
    "pickListId": 123
}

Parameter Name

Data Type

Description

Mandatory

pickListId

int

picklistId generated in USP

yes

 

HttpStatus : 200

  • No labels