Picking Containers
Picking Containers are temporary bins or bags to collect the products of a picklist in. Picklists can be linked to a picking container. Once the picking container barcode is scanned, Picqer will open the corresponding picklist.
Picking Containers are used with picklist batches.
Attributes
Name | Type | Description |
---|---|---|
idpicking_container | integer | Unique Picqer reference |
idpicklist | integer | Currently linked picklist |
name | string |
Get all picking containers
This endpoint is not paginated at the moment.
GET
https://example.picqer.com/api/v1/picking-containers
HTTP/1.1 200 OK
[
{
"idpicking_container": 1,
"idpicklist": 5,
"name": "1",
"created_at": "2022-03-28 13:37:38",
"updated_at": "2022-03-28 13:38:50"
},
{
"idpicking_container": 2,
"idpicklist": null,
"name": "2",
"created_at": "2022-03-28 13:37:38",
"updated_at": "2022-03-28 13:37:38"
}
]
Filters
You can filter the picking containers with the following parameters. Add these filters as querystring parameters to the URL.
Attribute | Description | Example |
---|---|---|
idpicklist | Get the picking container that is linked to this picklist. | 8 |
Get a single picking container
GET
https://example.picqer.com/api/v1/picking-containers/{idpicking_container}
HTTP/1.1 200 OK
{
"idpicking_container": 1,
"idpicklist": 5,
"name": "1",
"created_at": "2022-03-28 13:37:38",
"updated_at": "2022-03-28 13:38:50"
}
Link picklist to container
This links an existing picklist to an existing picking container.
POST
https://example.picqer.com/api/v1/picking-containers/{idpickling_container}/link
{
"idpicklist": 8"
}
HTTP/1.1 200 OK
{
"idpicking_container": 1,
"idpicklist": 8,
"name": "1",
"created_at": "2022-03-28 13:37:38",
"updated_at": "2022-03-28 13:38:50"
}
Read more Stock history