> ## 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.

# Get Pick List

> Retrieves the pick list associated with a specific machine identified by `MachineID`.



## OpenAPI

````yaml /openapi/lynx.yaml get /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:
    get:
      tags:
        - Machine Inventory
      summary: Get Pick List
      description: >-
        Retrieves the pick list associated with a specific machine identified by
        `MachineID`.
      operationId: get-pick-list
      parameters:
        - name: MachineID
          in: path
          required: true
          description: >-
            The unique identifier of the machine whose pick list is being
            retrieved.
          schema:
            type: integer
            format: int64
      responses:
        '200':
          description: The pick list was successfully retrieved.
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/PickListItem'
components:
  schemas:
    PickListItem:
      type: object
      description: >-
        Represents an item on a machine's pick list, including product
        information, stock levels, and pricing details.
      properties:
        NayaxProductID:
          type: integer
          format: int64
          nullable: true
          description: The unique identifier of the product in the Nayax system.
        ProductID:
          type: string
          nullable: true
          description: The unique identifier of the product.
        MachineID:
          type: integer
          format: int64
          nullable: true
          description: >-
            The unique identifier of the machine associated with this pick list
            item.
        MDBCode:
          type: integer
          format: int64
          nullable: true
          description: The MDB (Multi-Drop Bus) code associated with the product.
        PACode:
          type: string
          nullable: true
          description: The PA code associated with the product.
        SelectionID:
          type: string
          nullable: true
          description: The selection identifier for the product within the machine.
        OperatorButtonCode:
          type: string
          nullable: true
          description: The code used by operators for manual selections.
        PAR:
          type: integer
          format: int32
          nullable: true
          description: >-
            The PAR level, indicating the standard quantity of the product that
            should be stocked in the machine.
        MissingStock:
          type: integer
          format: int32
          nullable: true
          description: The quantity of stock that is missing from the machine.
        OnHandStock:
          type: integer
          format: int32
          nullable: true
          description: The quantity of stock currently on hand in the machine.
        VendOutAlertThreshold:
          type: integer
          format: int32
          nullable: true
          description: >-
            The stock level at which an alert should be triggered for potential
            vend out.
        MachinePrice:
          type: number
          format: double
          nullable: true
          description: The price of the product as set on the machine.
        CreditCardPrice:
          type: number
          format: double
          nullable: true
          description: The price of the product when purchased with a credit card.
        RetailPrice:
          type: number
          format: double
          nullable: true
          description: The retail price of the product.
        DEXPrice:
          type: number
          format: double
          nullable: true
          description: The price of the product according to DEX (Data Exchange) data.
        LastPickQTY:
          type: integer
          format: int32
          nullable: true
          description: >-
            The quantity of the product that was picked during the last
            restocking.
        PrePaidCardPrice:
          type: number
          format: double
          nullable: true
          description: The price of the product when purchased with a prepaid card.
        CashPrice:
          type: number
          format: double
          nullable: true
          description: The price of the product when purchased with cash.
        DEXProductName:
          type: string
          nullable: true
          description: The product name according to DEX data.
        ProductName:
          type: string
          nullable: true
          description: The name of the product.
        SalesSourceID:
          type: integer
          format: int32
          nullable: true
          description: The identifier for the source of sales data.
        MachineInventoryRef:
          type: string
          nullable: true
          readOnly: true
          description: >-
            A reference string for the machine's inventory, typically used for
            informational purposes.
        MachineRef:
          type: string
          nullable: true
          readOnly: true
          description: >-
            A reference string for the machine, typically used for informational
            purposes.
        ProductRef:
          type: string
          nullable: true
          readOnly: true
          description: >-
            A reference string for the product, typically used for informational
            purposes.
      additionalProperties: false
  securitySchemes:
    Authorization:
      type: http
      scheme: bearer
      description: Enter your Bearer token. It's required to authenticate API requests.

````