# PL11 - List picklists Call FrequencyRecommended usage: Every 15 minutesMaximum usage: Every 5 minutesRead MoreMore contextPaginationThis resource supports seek pagination (see documentation)Sort fieldssort field can have the following values:pickupDate (Default) - Sort by pickup date (asc by default) Endpoint: GET /api/picklists ## Query parameters: - `pickrun_code` (string) Pick run code for filtering. - `pickup_date_min` (string) Filter picklists with a pick-up date after the given date. - `pickup_date_max` (string) Filter picklists with a pick-up date before the given date. - `picklist_id` (array) Picklist id for filtering. This parameter can be supplied multiple times (picklist_id=OR01-A&picklist_id=OR02-A...). - `shop_id` (integer) Shop id for filtering. - `picklist_state` (array) Picklist state for filtering. This parameter can be supplied multiple times (picklist_state=WAITING_PREPARATION&picklist_state=IN_PREPARATION...). - `order_line_id` (array) Order line id for filtering. This parameter can be supplied multiple times (order_line_id=OR01-A-1&order_line_id=OR02-A-1...). ## Response 200 fields (application/json): - `data` (array, required) Page of data - `data.date_created` (string, required) Picklist creation date - `data.id` (string, required) Picklist identifier - `data.last_updated` (string, required) Picklist last update date - `data.order_lines` (array, required) Picklist order line identifiers - `data.order_lines.id` (string, required) Picklist order line id - `data.picklist_lines` (array, required) Picklist lines - `data.picklist_lines.offer_id` (integer, required) Identifier of the offer to pick - `data.picklist_lines.quantity` (integer, required) Quantity of offers to pick - `data.pickrun_code` (string) Pickrun code - `data.pickup_date` (string, required) Pickup date - `data.shop_id` (integer) Picklist shop identifier - `data.state` (string, required) Picklist state Enum: "NOTHING_TO_PREPARE", "WAITING_PREPARATION", "IN_PREPARATION", "READY_FOR_PICKUP", "CLOSED" - `next_page_token` (string) Token to access the next page. Absent if the current page is the last one. - `previous_page_token` (string) Token to access the previous page. Absent if the current page is the first one.