Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Table of Contents
outlinetrue
stylenone

...

  • transaction_type must be whs_bulk_add.

  • When setting up the Barcode API in Admin, the Authentication Required box must be trueAuthentication Required checkbox exampleImage Removedimage-20240502-184550.pngImage Added . Barcode requires authentication to work.

...

  • transaction_type must be whs_bulk_transfer.

  • When setting up the Barcode API in Admin, the Authentication Required box must be true Authentication Required checkbox exampleImage Removedimage-20240502-184620.pngImage Added . Barcode requires authentication to work.

...

  • transaction_type must be po_receive.

  • When setting up the Barcode API in Admin, the Authentication Required box must be true Authentication Required checkbox exampleImage Removedimage-20240502-184629.pngImage Added . Barcode requires authentication to work.

...

  • transaction_type must be whs_physical_inventory.

  • When setting up the Barcode API in Admin, the Authentication Required box must be true Authentication Required checkbox exampleImage Removedimage-20240502-184656.pngImage Added . Barcode requires authentication to work.

...

Parameter

Required

Data Type

Notes

batch

No

Array

Barcode Batches expect the data to be formatted as JSON.

Batches are expected to be an array of different Barcode Transactions.


Expand
titleExample Batch:

{ "batch": [ { "transaction_type": "sd_eqp_status", "recid": "53114", "sde_status": "263", "eqp_id": "331623", "location": "332060" }, { "transaction_type": "whs_bulk_add", "eqp_catalog": "533", "eqp_status": "94", "location": "86201", "quantity": "1", "purchase_price": "0.45", "assets[0][ASSET_TAG]": "assettag143", "assets[0][SERIAL_NUM]": "serialnum143", "assets[0][EQUIPMENT_ID]": "equipmentid143", "comments": "pete test", "units": "" }, { "transaction_type": "whs_bulk_transfer", "eqp_catalog": "952", "quantity": "1", "from_location": "289039", "to_location": "331623", "recids[]": "1", "comments": "pete test" }, { "transaction_type": "po_receive", "recid": "38", "eqp_catalog": "1095", "price": "1.00", "quantity": "1", "location": "331570" }, { "transaction_type": "whs_physical_inventory", "eqp_catalog": "3394", "units": "0.45", "quantity": "10", "location": "332058", "scan_date":"2000/01/01" } ] }

...