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

# Delete Specific Payment Method for Machine

> Deletes a specific payment method associated with a machine, identified by the provided MachineID and paymentMethodID. This operation allows users to remove a payment option from the machine.



## OpenAPI

````yaml /openapi/lynx.yaml delete /v1/machines/{MachineID}/paymentMethods/{paymentMethodID}
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}/paymentMethods/{paymentMethodID}:
    delete:
      tags:
        - Machines
      summary: Delete Specific Payment Method for Machine
      description: >-
        Deletes a specific payment method associated with a machine, identified
        by the provided MachineID and paymentMethodID. This operation allows
        users to remove a payment option from the machine.
      operationId: delete-payment-method-for-machine
      parameters:
        - name: MachineID
          in: path
          required: true
          description: The unique identifier of the machine.
          schema:
            type: integer
            format: int64
        - name: paymentMethodID
          in: path
          description: The unique identifier of the payment method to be deleted.
          required: true
          schema:
            type: integer
            format: int32
      responses:
        '200':
          description: >-
            The result of the operation, indicating whether the payment method
            was successfully deleted.
          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.

````