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
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"
}
Create new picking container
POST
https://example.picqer.com/api/v1/picking-containers
{
"name": "Blue bin"
}
HTTP/1.1 201 Created
{
"idpicking_container": 1,
"idpicklist": null,
"name": "Blue bin"
"created_at": "2025-03-28 13:37:38",
"updated_at": "2025-03-28 13:38:50"
}
Update a picking container
PUT
https://example.picqer.com/api/v1/picking-containers/{idpicking_container}
{
"name": "Red bin"
}
HTTP/1.1 200 OK
{
"idpicking_container": 1,
"idpicklist": null,
"name": "Red bin"
"created_at": "2025-03-28 13:37:38",
"updated_at": "2025-03-28 13:38:50"
}
Delete picking container
DELETE
https://example.picqer.com/api/v1/picking-containers/{idpicking_container}
HTTP/1.1 204 No Content
Link picklist to container
This links an existing picklist to an existing picking container.
POST
https://example.picqer.com/api/v1/picking-containers/{idpicking_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

