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

# Get payment methods by ActorID

> Retrieves a list of payment methods associated with a specific actor, identified by the `ActorID`.



## OpenAPI

````yaml /openapi/lynx.yaml get /v1/actors/{ActorID}/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/actors/{ActorID}/paymentMethods:
    get:
      tags:
        - Actors
      summary: Get payment methods by ActorID
      description: >-
        Retrieves a list of payment methods associated with a specific actor,
        identified by the `ActorID`.
      operationId: get-payment-methods-by-actorid
      parameters:
        - name: ActorID
          in: path
          description: >-
            The unique identifier of the actor whose payment methods are being
            requested.
          required: true
          schema:
            type: integer
            format: int64
      responses:
        '200':
          description: >-
            A list of payment methods associated with the actor was retrieved
            successfully.
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ActorPaymentResponse'
components:
  schemas:
    ActorPaymentResponse:
      type: object
      description: >-
        Schema representing the payment methods associated with an actor,
        including details on external payment providers and extra charges.
      properties:
        ActorID:
          type: integer
          format: int64
          description: The unique identifier of the actor.
        PaymentMethodID:
          type: integer
          format: int32
          description: The identifier of the payment method associated with the actor.
        ExtraChargePercentageBit:
          type: boolean
          nullable: true
          description: >-
            Indicates whether an extra charge is calculated as a percentage of
            the transaction.
        ExtraChargeValue:
          type: number
          format: double
          description: The value of the extra charge applied to transactions.
        LastUpdated:
          type: string
          format: date-time
          nullable: true
          description: The date and time when the payment method details were last updated.
        ExternalPaymentProviderURL:
          type: string
          nullable: true
          description: The URL of the external payment provider, if applicable.
        ExternalPaymentProviderID:
          type: integer
          format: int32
          nullable: true
          description: The identifier of the external payment provider.
        ExternalPaymentProviderModeID:
          type: integer
          format: int32
          nullable: true
          description: >-
            The mode identifier of the external payment provider (e.g., test,
            production).
        ExternalPaymentProviderUsername:
          type: string
          nullable: true
          description: >-
            The username used for authentication with the external payment
            provider.
        ExternalPaymentProviderPassword:
          type: string
          nullable: true
          description: >-
            The password used for authentication with the external payment
            provider.
        ExternalPaymentProviderMerchantID:
          type: string
          nullable: true
          description: The merchant identifier used by the external payment provider.
        ExternalPaymentProviderKey:
          type: string
          nullable: true
          description: >-
            The key used by the external payment provider for transaction
            processing.
        ExternalPaymentProviderAppID:
          type: string
          nullable: true
          description: The application identifier used by the external payment provider.
        ExternalPaymentProviderCertificatePath:
          type: string
          nullable: true
          description: >-
            The file path to the certificate used by the external payment
            provider.
        ExternalPaymentProviderCertificatePassword:
          type: string
          nullable: true
          description: The password for the external payment provider's certificate.
        ExternalPaymentProviderApiKey:
          type: string
          nullable: true
          description: The API key used by the external payment provider.
        ExternalPaymentProviderLocationIdentifier:
          type: string
          nullable: true
          description: The location identifier used by the external payment provider.
        PaymentMethodWorkingDays:
          type: array
          items:
            $ref: '#/components/schemas/WorkDay'
          nullable: true
          description: >-
            The working days and hours during which the payment method is
            available.
        PaymentMethodCustomData:
          type: string
          nullable: true
          description: Custom data associated with the payment method, if any.
        ExtraChargeBackupValue:
          type: number
          format: double
          description: The backup value of the extra charge applied to transactions.
        ChargeMachineID:
          type: integer
          format: int64
          nullable: true
          description: >-
            The identifier of the machine where charges are processed, if
            applicable.
      additionalProperties: false
    WorkDay:
      type: object
      description: >-
        Schema representing the working days and hours for a specific payment
        method.
      properties:
        name:
          type: string
          nullable: true
          description: The name of the workday (e.g., Monday, Holiday).
        week_day:
          type: integer
          format: int32
          nullable: true
          description: >-
            The day of the week represented as an integer (e.g., 1 for Monday, 7
            for Sunday).
        start_time:
          type: string
          format: date-span
          nullable: true
          description: The start time of the working hours for the payment method.
        end_time:
          type: string
          format: date-span
          nullable: true
          description: The end time of the working hours for the payment method.
        work_hour_lut_id:
          type: integer
          format: int32
          nullable: true
          description: >-
            The lookup identifier for the work hours associated with the payment
            method.
      additionalProperties: false
  securitySchemes:
    Authorization:
      type: http
      scheme: bearer
      description: Enter your Bearer token. It's required to authenticate API requests.

````