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

# Request a Payment Refund

> Submits a request to refund a specific payment. The request body includes details such as the refund amount, reason, and transaction ID.



## OpenAPI

````yaml /openapi/lynx.yaml post /v1/payment/refund-request
openapi: 3.0.1
info:
  title: Nayax Operational Lynx API
  version: v1
servers:
  - url: https://qa-lynx.nayax.com/operational
security:
  - Authorization: []
paths:
  /v1/payment/refund-request:
    post:
      tags:
        - Payment
      summary: Request a Payment Refund
      description: >-
        Submits a request to refund a specific payment. The request body
        includes details such as the refund amount, reason, and transaction ID.
      operationId: request-payment-refund
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PaymentRefundRequestLynxModel'
      responses:
        '200':
          description: >-
            The refund request was successfully processed, and the response
            contains the result of the request.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RefundPaymentLynxModelResponse'
components:
  schemas:
    PaymentRefundRequestLynxModel:
      type: object
      properties:
        RefundAmount:
          type: number
          format: double
          nullable: true
          description: The amount to be refunded to the customer.
        RefundEmailList:
          type: string
          nullable: true
          description: >-
            A list of email addresses to notify about the refund, separated by
            commas.
        RefundReason:
          type: string
          nullable: true
          description: The reason for requesting the refund.
        TransactionId:
          type: integer
          format: int64
          description: >-
            The unique identifier of the transaction for which the refund is
            requested.
        SiteId:
          type: integer
          format: int32
          description: The unique identifier of the site where the transaction occurred.
        MachineAuTime:
          type: string
          format: date-time
          description: The machine's authorization time associated with the transaction.
      additionalProperties: false
    RefundPaymentLynxModelResponse:
      type: object
      properties:
        Result:
          type: string
          nullable: true
          description: The result of the refund request, indicating success or failure.
        Status:
          type: string
          nullable: true
          description: The current status of the refund request.
      additionalProperties: false
  securitySchemes:
    Authorization:
      type: http
      scheme: bearer
      description: Enter your Bearer token. It's required to authenticate API requests.

````