This method allows you to get information on scanned boxes per pick ticket.
Valid Tokens: Company.
This method utilizes HTTP statuses. Please refer to HTTP Status Codes for more information.
Related Articles
-
Delete a Prebook 1.0 (API)
-
-
-
Add Inventory (API)
-
Use the Scanner to add Hard Goods to an Order (Knowledge Base)
Request
URL: https://api.kometsales.com/api/pick.ticket.scanning.status.list
Method: POST
Content-Type: application/JSON
Input Parameters
authenticationToken (required) (string:50)
Komet Sales security token.
pickTicketList (required)
List of pick tickets separated by commas.
{ "authenticationToken": "hrn6ihhuu5nk99hc8i32prng3m", "pickTicketList": [ "1183","1184","2221" ] }
Response
An array of the pick tickets information.
number (integer:10)
Order number.
totalBoxes (integer:10)
Total number of boxes in the pick ticket.
scannedBoxes (integer:10)
Number of scanned boxes within the picket ticket.
[ { "number":"1183", "scannedBoxes":0, "totalBoxes":12 }, { "number":"1184", "scannedBoxes":1, "totalBoxes":10 }, { "number":"2221", "scannedBoxes":20, "totalBoxes":20 } ]