Picklist batch presets
When creating picklist batches, you can provide the filters in the request or you can use a preset. Presets are handy when you have a lot of filters or you want your order pickers to use the same filters every time.
Creating a preset can be done in the web interface. Via the API you can retrieve the current presets.
Attributes
Name | Type | Description |
---|---|---|
idpicklist_batch_preset | integer | Unique Picqer reference |
name | string | The name you gave the preset |
picklists_count | integer | Amount of picklists that match the filters in the preset (only in the detailed response) |
Get all presets
GET
https://example.picqer.com/api/v1/picklists/batches/presets
HTTP/1.1 200 OK
[
{
"idpicklist_batch_preset": 823467,
"name": "All singles zone A"
},
{
"idpicklist_batch_preset": 827321,
"name": "Zone B-E"
}
]
This endpoint uses pagination.
Get single preset
GET
https://example.picqer.com/api/v1/picklists/batches/preset/{idpicklist_batch_preset}
HTTP/1.1 200 OK
{
"idpicklist_batch_preset": 823467,
"name": "All singles zone A",
"picklists_count": 2
}