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

# Get Payment Methods

> Retrieves a list of payment methods, optionally filtered by `PaymentMethodID`.



## OpenAPI

````yaml /openapi/lynx.yaml get /v1/paymentMethods
openapi: 3.0.1
info:
  title: Nayax Operational Lynx API
  version: v1
servers:
  - url: https://qa-lynx.nayax.com/operational
security:
  - Authorization: []
paths:
  /v1/paymentMethods:
    get:
      tags:
        - Lookups
      summary: Get Payment Methods
      description: >-
        Retrieves a list of payment methods, optionally filtered by
        `PaymentMethodID`.
      operationId: get-payment-methods
      parameters:
        - name: PaymentMethodID
          in: query
          description: The unique identifier of the payment method to filter the results.
          schema:
            type: integer
            format: int32
      responses:
        '200':
          description: A list of payment methods matching the specified criteria.
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/PaymentMethodDbEntity'
components:
  schemas:
    PaymentMethodDbEntity:
      type: object
      description: >-
        Represents detailed information about a payment method, including its
        identifiers, capabilities, and settings.
      properties:
        PaymentMethodID:
          type: integer
          format: int32
          nullable: true
          description: The unique identifier of the payment method.
        PaymentMethodDescription:
          type: string
          nullable: true
          description: A brief description of the payment method.
        LastUpdated:
          type: string
          format: date-time
          nullable: true
          description: >-
            The date and time when the payment method information was last
            updated.
        PrepaidPaymentBit:
          type: boolean
          nullable: true
          description: Indicates whether the payment method supports prepaid payments.
        PreselectionSupportBit:
          type: integer
          format: int32
          nullable: true
          description: >-
            Indicates whether the payment method supports pre-selection during
            transactions.
        TransactionBlockDuration:
          type: integer
          format: int32
          nullable: true
          description: >-
            The duration (in seconds) for which a transaction is blocked or
            held.
        AutomaticVoidBit:
          type: boolean
          nullable: true
          description: >-
            Indicates whether the payment method supports automatic voids of
            transactions.
        CKey:
          type: string
          nullable: true
          description: >-
            A unique key associated with the payment method for additional
            identification or reference.
        ExternalPrepaidBit:
          type: boolean
          nullable: true
          description: >-
            Indicates whether the payment method supports external prepaid
            transactions.
        MobileApplicationBit:
          type: boolean
          nullable: true
          description: >-
            Indicates whether the payment method is supported by mobile
            applications.
        QRPaymentSupportBit:
          type: boolean
          nullable: true
          description: Indicates whether the payment method supports QR code payments.
        ForceSettlementSupportBit:
          type: boolean
          nullable: true
          description: Indicates whether the payment method supports forced settlements.
      additionalProperties: false
  securitySchemes:
    Authorization:
      type: http
      scheme: bearer
      description: Enter your Bearer token. It's required to authenticate API requests.

````