Collect Item API

Manage picking document items — storage location, serial number, price adjustments

Base URL

https://{tenant}.logzi.com/api/collect_item/

Every request returns a JSON response. On success result.code == 1, on error result.code == 0. A collect item represents a line of a picking document. Through the item you can update the storage location, the pallet, the price, the checked status and the serial numbers.

GET /api/collect_item/get

Retrieve a single collect item by its identifier.

Query parameters

ParameterTypeRequiredDescription
idintCollect item identifier

Example request

GET /api/collect_item/get?id=1
X-API-KEY: {your_api_key}
GET /api/collect_item/list

List of items belonging to a picking document.

Query parameters

ParameterTypeRequiredDescription
receipt_idintPicking document identifier
receipt_type_idintDocument type identifier
list_countintMaximum number of rows to return
list_offsetintPagination offset (default: 0)
list_conditionobjectObject containing filter conditions
list_paramsobjectAdditional query parameters
list_sortstringSort field name

Example request

GET /api/collect_item/list?receipt_id=100&receipt_type_id=22&list_offset=0
X-API-KEY: {your_api_key}
POST /api/collect_item/save

Update the storage details and status of a collect item.

POST fields — data object

FieldTypeRequiredDescription
idintIdentifier of the item to update
store_idintWarehouse identifier
store_locality_idintStorage location identifier
pallet_idintPallet identifier
comment_topstringItem comment
pricefloatItem price
checkedint1 = checked, 0 = not checked

Example request

POST /api/collect_item/save
X-API-KEY: {your_api_key}
Content-Type: application/json

{
  "data": {
    "id": 42,
    "store_locality_id": 5,
    "checked": 1
  }
}
POST /api/collect_item/delete

Delete a collect item by its identifier.

POST fields — data object

FieldTypeRequiredDescription
idintIdentifier of the item to delete

Example request

POST /api/collect_item/delete
X-API-KEY: {your_api_key}
Content-Type: application/json

{ "data": { "id": 42 } }

Get in touch with us

Interested in our software? Feel free to write to us!

Need help?

If you can't find the answer and need assistance

Create your account now,
pay later!

Try it free for 3 days, no risk, no obligation!