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

Version 1 Next »

This method allows you to get information on scanned boxes per pick ticket.

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.

Sample Request

{
  "authenticationToken": "hrn6ihhuu5nk99hc8i32prng3m",
  "pickTicketList": [
    "1183","1184","2221"
  ]
}

Response

Output

  • Array of the pick tickets information. 

    • number (integer:10): the order number.

    • totalBoxes (integer:10): the total number of boxes within the pick ticket.

    • scannedBoxes (integer:10): the number of scanned boxes within the picket ticket.

Keep in mind that this method will return HTTP statuses, please refer to HTTP Status Codes for more information.

Sample Response

[
	{
		"number":"1183",
		"scannedBoxes":0,
		"totalBoxes":12
	},
	{
		"number":"1184",
		"scannedBoxes":1,
		"totalBoxes":10
	},
	{
		"number":"2221",
		"scannedBoxes":20,
		"totalBoxes":20
	}
]


  • No labels