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

# Provider bağlantı alanlarını listele

> Yalnız alan tanımlarını döndürür; provider credential değerleri hiçbir zaman dönmez. Tarih alanları saklanan credential değil, hareket sorgusu kontrolleridir.



## OpenAPI

````yaml /openapi/openapi.yaml get /banks/provider/variables
openapi: 3.1.0
info:
  title: Tahsil API
  version: 1.0.0
  description: >-
    Tahsil banka bağlantıları, provider senkronizasyonu, değiştirilemez
    hareketler, zamanlamalar ve hareket otomasyonu için tenant-scoped public API
    sözleşmesi.
servers:
  - url: https://api.tahsil.dev
    description: Production
security:
  - apiKeyAuth: []
    apiSecretAuth: []
tags:
  - name: Sistem - Sağlık
    description: Servis canlılığı ve bağımlılık hazır olma kontrolleri.
  - name: Banka - Bağlantılar
    description: Banka bağlantısı, credential, setup, sync, health ve kullanım işlemleri.
  - name: Banka - Hareketler
    description: >-
      Provider senkronizasyonuyla oluşan değiştirilemez banka hareketleri ve CSV
      dışa aktarımı.
  - name: Banka - Otomasyon
    description: Hareket atamaları, kurallar, preview ve backfill çalışmaları.
  - name: Banka - Zamanlamalar
    description: Banka sorgularının zamanlama ve çalışma durumu yönetimi.
  - name: Banka - Analitik
    description: Tenant kapsamlı dashboard sorgu kataloğu ve analitik sonuçları.
  - name: Denetim - Connector Logları
    description: Maskelenmiş banka connector istek ve yanıt kayıtları.
paths:
  /banks/provider/variables:
    get:
      tags:
        - Banka - Bağlantılar
      summary: Provider bağlantı alanlarını listele
      description: >-
        Yalnız alan tanımlarını döndürür; provider credential değerleri hiçbir
        zaman dönmez. Tarih alanları saklanan credential değil, hareket sorgusu
        kontrolleridir.
      operationId: getBanksProviderVariables
      responses:
        '200':
          $ref: '#/components/responses/ProviderVariablesListResponse'
        '403':
          $ref: '#/components/responses/ErrorResponse'
        '502':
          $ref: '#/components/responses/ErrorResponse'
components:
  responses:
    ProviderVariablesListResponse:
      description: Desteklenen bankaların provider alan tanımları.
      content:
        application/json:
          schema:
            type: object
            required:
              - status
              - result
            properties:
              status:
                type: boolean
                const: true
              result:
                type: array
                items:
                  $ref: '#/components/schemas/ProviderVariables'
            additionalProperties: false
    ErrorResponse:
      description: İstek başarısız oldu.
      content:
        application/json:
          schema:
            type: object
            required:
              - status
            properties:
              status:
                type: boolean
                const: false
              code:
                type: string
                description: >-
                  Kararlı hata kodu; kodlanmış domain ve güvenlik hatalarında
                  döner.
              message:
                type: string
                description: >-
                  İnsan tarafından okunabilir hata açıklaması; mevcutsa
                  entegrasyon kararı için kullanılmamalıdır.
              meta:
                type: object
                additionalProperties: true
              result:
                type: array
                deprecated: true
                description: Legacy Joi doğrulama hatalarında dönen alan listesi.
                items:
                  type: object
                  properties:
                    type:
                      type: string
                    joiType:
                      type: string
                    path:
                      type:
                        - string
                        - number
                    label:
                      type: string
                  additionalProperties: false
              description:
                type: string
            additionalProperties: false
          example:
            status: false
            code: TRANSACTION_AMOUNT_RANGE_INVALID
            message: minAmount, maxAmount değerinden büyük olamaz.
  schemas:
    ProviderVariables:
      type: object
      required:
        - bankCode
        - fields
      properties:
        bankCode:
          type: string
          example: akbank
        fields:
          type: array
          items:
            $ref: '#/components/schemas/ProviderVariableField'
      additionalProperties: false
    ProviderVariableField:
      type: object
      required:
        - name
        - label
        - type
        - required
        - purpose
        - sensitive
        - repeatable
      properties:
        name:
          type: string
        label:
          type: string
          description: Form alanında gösterilecek kullanıcı dostu etiket.
        type:
          type: string
          enum:
            - string
            - number
            - boolean
            - date
        required:
          type: boolean
        purpose:
          type: string
          enum:
            - credential
            - query
        sensitive:
          type: boolean
        repeatable:
          type: boolean
          description: >-
            true ise credential değeri aynı alan altında string dizi olarak
            gönderilir.
        format:
          type: string
          description: >-
            Alanın biçim ipucu; iban değeri ISO 13616 MOD-97 doğrulamalı Türk
            IBAN'ını belirtir.
        minItems:
          type: integer
          minimum: 0
        maxItems:
          type: integer
          minimum: 1
        example: {}
      additionalProperties: false
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: Tenant admin tarafından oluşturulan API anahtarının kimliği.
    apiSecretAuth:
      type: apiKey
      in: header
      name: x-api-secret
      description: >-
        Yalnız oluşturma anında gösterilen API anahtarı secret değeri. x-api-key
        ile aynı istekte gönderilir.

````