> ## Documentation Index
> Fetch the complete documentation index at: https://nayax-44d6e37b-docs-marshall-faq-redistribution.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Set All Machine Bins as Full

> Marks all bins in the specified machine as fully stocked, indicating that all product slots are filled to capacity.



## OpenAPI

````yaml /openapi/lynx.yaml post /v1/machines/{MachineID}/inventory/full
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}/inventory/full:
    post:
      tags:
        - Machine Inventory
      summary: Set All Machine Bins as Full
      description: >-
        Marks all bins in the specified machine as fully stocked, indicating
        that all product slots are filled to capacity.
      operationId: set-machine-bins-full
      parameters:
        - name: MachineID
          in: path
          required: true
          description: >-
            The unique identifier of the machine whose bins are being set as
            full.
          schema:
            type: integer
            format: int64
      responses:
        '200':
          description: The operation to mark all machine bins as full was successful.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResult'
components:
  schemas:
    ApiResult:
      type: object
      description: >-
        Schema representing the result of an API operation, including status and
        messages.
      properties:
        Ok:
          type: boolean
          description: >-
            Indicates whether the API operation was successful (`true`) or not
            (`false`).
        Message:
          type: string
          nullable: true
          description: >-
            A user-friendly message describing the result of the operation, if
            applicable.
        SystemMessage:
          type: string
          nullable: true
          description: >-
            A system-level message providing additional details about the
            operation's result, often used for debugging or logging.
        code:
          type: string
          nullable: true
          description: >-
            An optional code representing the result of the operation, which can
            be used for more granular handling of responses.
      additionalProperties: false
  securitySchemes:
    Authorization:
      type: http
      scheme: bearer
      description: Enter your Bearer token. It's required to authenticate API requests.

````