> ## Documentation Index
> Fetch the complete documentation index at: https://docs.lab4pay.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Configuration

> You can retrieve the full configuration without needing to request individual settings or the payment methods list separately.



## OpenAPI

````yaml GET /v1/pay-connect/config/
openapi: 3.1.0
info:
  title: Pay-Connect API
  description: >-
    Pay-Connect is a unified payment integration platform that enables reliable
    communication between software applications and payment terminals. With a
    single integration, developers can manage terminals, execute payment
    operations, and retrieve transaction data consistently across hardware and
    platforms.
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://api-payment.lab4pay.com
  - url: https://api-payment.lab4pay.dev
security:
  - bearerAuth: []
paths:
  /v1/pay-connect/config/:
    get:
      description: >-
        You can retrieve the full configuration without needing to request
        individual settings or the payment methods list separately.
      parameters:
        - name: X-Pay-Connect-Integrator-Id
          in: header
          description: Pay-Connect Integrator ID
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Successful operation
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PayConnectConfigurationResponse'
        '400':
          description: Bad Request
        '401':
          description: Unauthorized
        '500':
          description: Internal Server Error
components:
  schemas:
    PayConnectConfigurationResponse:
      required:
        - version
        - terminal_id
        - default_language
        - currency
        - timezone
        - payment_methods
      type: object
      properties:
        version:
          description: Configuration version
          type: string
        terminal_id:
          description: Terminal ID
          type: string
        default_language:
          description: Default language set on terminal
          type: string
        currency:
          description: Payment currency set on terminal
          type: string
        timezone:
          description: Point of sale timezone
          type: string
        payment_methods:
          description: The list of available payment methods on terminal
          type: array
          items:
            type: object
            required:
              - id
              - name
            properties:
              id:
                description: Payment method ID
                type: string
              name:
                description: Payment method name
                type: string
              group:
                description: Payment method group
                type: object
                required:
                  - id
                  - name
                properties:
                  id:
                    description: Payment method group ID
                    type: string
                  name:
                    description: Payment method group name
                    type: string
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````