Create Picklist for Orders In Increff OMS
Inbound | POST | /usp/picklist/create
Summary
This API is used to create picklist for orders which are to be picked together as part of a Pick Order Group (POG).
Description
This API will release 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
{
"channelName": "Myntra",
"locationCode": "LOC1",
"pickListCode": "externalPickListCode1",
"orderList":[
{
"orderCode": "Order12345"
}
]
}
Â
Parameter Name | Data Type | Description | Mandatory |
| string | Channel for which the picklist is being released | Yes |
| string | location for which the picklist is being released | Yes |
| string | External picklist reference identifier. This will be mapped in USP for reference | No |
| object[] | array of orders to be released | Yes |
| string | marketPlace orderId | Yes |
 Response
{
"pickListId": 123
}
Â
Parameter Name | Data Type | Description | Mandatory |
| int | This is Internal picklistId reference generated in USP | Yes |
Â
HttpStatus : 200