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

# Update Machine Attribute to Model Defaults

> Resets the machine attributes to the default values defined by the machine model. This operation is typically used to restore default configurations.



## OpenAPI

````yaml /openapi/lynx.yaml post /v1/machines/{MachineID}/attributes/defaults
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}/attributes/defaults:
    post:
      tags:
        - Machine Attribute
      summary: Update Machine Attribute to Model Defaults
      description: >-
        Resets the machine attributes to the default values defined by the
        machine model. This operation is typically used to restore default
        configurations.
      operationId: update-machine-attributes-to-defaults
      parameters:
        - name: MachineID
          in: path
          required: true
          description: >-
            The unique identifier of the machine whose attributes are being
            updated.
          schema:
            type: integer
            format: int64
      responses:
        '200':
          description: >-
            The machine attributes were successfully updated to the machine
            model defaults.
          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.

````