> ## Documentation Index
> Fetch the complete documentation index at: https://devzone.nayax.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Create Pick List

> Generates a new pick list for a specific machine, with options to adjust the pick list based on various criteria.



## OpenAPI

````yaml /openapi/lynx.yaml post /v1/machines/{MachineID}/pickList
openapi: 3.0.1
info:
  title: Nayax Operational Lynx API
  version: v1
servers:
  - url: https://qa-lynx.nayax.com/operational
security:
  - Authorization: []
paths:
  /v1/machines/{MachineID}/pickList:
    post:
      tags:
        - Machine Inventory
      summary: Create Pick List
      description: >-
        Generates a new pick list for a specific machine, with options to adjust
        the pick list based on various criteria.
      operationId: generate-pick-list
      parameters:
        - name: MachineID
          in: path
          required: true
          description: >-
            The unique identifier of the machine for which the pick list is
            being generated.
          schema:
            type: integer
            format: int64
        - name: UseMinPick
          in: query
          description: Specifies whether to use minimum picklist logic for the machine.
          schema:
            type: boolean
        - name: AddOnlineSales
          in: query
          description: >-
            Adjusts the pick list by considering online transactions (relevant
            for DEX data).
          schema:
            type: boolean
        - name: AddEstimatedSales
          in: query
          description: >-
            Adds products to the pick list based on sales statistics for the
            specified visit date.
          schema:
            type: string
            format: date-time
      responses:
        '204':
          description: The pick list was successfully generated.
components:
  securitySchemes:
    Authorization:
      type: http
      scheme: bearer
      description: Enter your Bearer token. It's required to authenticate API requests.

````