Get Products for Picklist - Sellercloud API Docs

Get Products for Picklist

Table of Contents

Overview

Endpoint that is presented in this article is used for getting a list of products which are included in a given picklist.

In order to consume the endpoint you must:

For information on how you can authenticate, see: Authentication

As soon as you do authentication and receive a valid token, it needs to be passed on the call when updating the order.

Endpoint

Example for such endpoint for TT server is https://tt.api.sellercloud.com/rest/api/Picklists/Products

For your server endpoint will be:

https://tt.api.sellercloud.com/rest/api/Picklists/Products

Request

Parameter Data Type Description Is Required
picklistID integer ID of existing order. Yes
pageNumber integer Page Number for list of products Yes
pageSize integer Number of records in the product list Yes

Response

Results: [  
 {  
 "ID": 42,  
 "ProductID": "SKU",  
 "ProductName": "ProductName",  
 "Qty": 1,  
 "QtyPicked": 0,  
 "QtySorted": 0,  
 "QtyShipped": 0,  
 "Location": "",  
 "Package": "",  
 "InventoryAvailableQty": 0,  
 "ReplacementCount": 0,  
 "ReplacementSKU": "",  
 "ReplacementLOC": "",  
 "UPC": "",  
 "Purchaser": "purchaserEmail@sellercloud.com",  
 "ProductWeight": 0,  
 "OrderIdList": "1000"  
 }  
]  
TotalResults: 1