> ## 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 Billing Providers

> Retrieves a list of billing providers, optionally filtered by `BillingProviderID`.



## OpenAPI

````yaml /openapi/lynx.yaml get /v1/billingProviders
openapi: 3.0.1
info:
  title: Nayax Operational Lynx API
  version: v1
servers:
  - url: https://qa-lynx.nayax.com/operational
security:
  - Authorization: []
paths:
  /v1/billingProviders:
    get:
      tags:
        - Lookups
      summary: Get Billing Providers
      description: >-
        Retrieves a list of billing providers, optionally filtered by
        `BillingProviderID`.
      operationId: get-billing-providers
      parameters:
        - name: BillingProviderID
          in: query
          description: The unique identifier of the billing provider to filter the results.
          schema:
            type: integer
            format: int32
      responses:
        '200':
          description: A list of billing providers matching the specified criteria.
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/BillingProvidersDbEntity'
components:
  schemas:
    BillingProvidersDbEntity:
      type: object
      description: >-
        Represents detailed information about a billing provider, including
        identifiers, capabilities, and settings.
      properties:
        BillingProviderID:
          type: integer
          format: int32
          nullable: true
          description: The unique identifier of the billing provider.
        BillingProviderName:
          type: string
          nullable: true
          description: The name of the billing provider.
        TerminalIDLength:
          type: integer
          format: int32
          nullable: true
          description: The length of the terminal ID used by the billing provider.
        BillingProviderComments:
          type: string
          nullable: true
          description: Additional comments or notes about the billing provider.
        LastUpdated:
          type: string
          format: date-time
          nullable: true
          description: >-
            The date and time when the billing provider information was last
            updated.
        MinimumTransactionAmount:
          type: string
          nullable: true
          description: The minimum transaction amount allowed by the billing provider.
        RegularAuthorizationBit:
          type: boolean
          nullable: true
          description: >-
            Indicates whether the billing provider supports regular
            authorizations.
        CancelAuthorizationBit:
          type: boolean
          nullable: true
          description: >-
            Indicates whether the billing provider supports authorization
            cancellations.
        PreSelectionBit:
          type: boolean
          nullable: true
          description: >-
            Indicates whether the billing provider supports pre-selection of
            transactions.
        TransactionVoidBit:
          type: boolean
          nullable: true
          description: Indicates whether the billing provider supports transaction voids.
        ECommerceTransactionsBit:
          type: boolean
          nullable: true
          description: >-
            Indicates whether the billing provider supports e-commerce
            transactions.
        ForcedTransactionsBit:
          type: boolean
          nullable: true
          description: Indicates whether the billing provider supports forced transactions.
        ConstantPreAuthorizationBit:
          type: boolean
          nullable: true
          description: >-
            Indicates whether the billing provider supports constant
            pre-authorizations.
        EMVTransactionsBit:
          type: integer
          format: int32
          nullable: true
          description: Indicates whether the billing provider supports EMV transactions.
        AutomaticTransactionVoidBit:
          type: boolean
          nullable: true
          description: >-
            Indicates whether the billing provider supports automatic
            transaction voids.
        ForceSettlementBit:
          type: boolean
          nullable: true
          description: Indicates whether the billing provider supports force settlements.
        OfflineEMVTransactionsBit:
          type: boolean
          nullable: true
          description: >-
            Indicates whether the billing provider supports offline EMV
            transactions.
        SettlementRetryBit:
          type: boolean
          nullable: true
          description: Indicates whether the billing provider supports settlement retries.
        AutomaticRefund:
          type: boolean
          nullable: true
          description: Indicates whether the billing provider supports automatic refunds.
        PartialRefundSupport:
          type: boolean
          nullable: true
          description: Indicates whether the billing provider supports partial refunds.
        CKey:
          type: string
          nullable: true
          description: >-
            A unique key associated with the billing provider for additional
            identification or reference.
        SupportReconciliation:
          type: boolean
          nullable: true
          description: >-
            Indicates whether the billing provider supports reconciliation
            processes.
        ReconciliationTimeZoneKey:
          type: integer
          format: int32
          nullable: true
          description: The time zone key associated with the reconciliation process.
        ReconciliationSourceType:
          type: string
          nullable: true
          description: The source type associated with the reconciliation process.
        SupportIncrementalAuth:
          type: boolean
          nullable: true
          description: >-
            Indicates whether the billing provider supports incremental
            authorization.
      additionalProperties: false
  securitySchemes:
    Authorization:
      type: http
      scheme: bearer
      description: Enter your Bearer token. It's required to authenticate API requests.

````