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

# List normalized provider connection field metadata

> Returns field definitions only; provider credential values are never returned. Date fields are transaction query controls, not stored credentials.



## OpenAPI

````yaml /openapi/openapi.yaml get /banks/provider/variables
openapi: 3.1.0
info:
  title: Tahsil API
  version: 1.0.0
  description: >-
    Tahsil müşterilerinin web ve mobil uygulamalarda kullandığı tenant-scoped
    müşteri API sözleşmesi.
servers:
  - url: https://api.tahsil.dev
    description: Production
security:
  - bearerAuth: []
tags:
  - name: Operations - Health
    description: Public liveness and dependency readiness probes.
  - name: Identity - Auth
    description: User login, refresh and logout flows for token-based access.
  - name: Banking - Accounts
    description: Bank account aggregation endpoints available to customer tenants.
  - name: Banking - Transactions
    description: Bank transaction ingestion and retrieval endpoints.
  - name: Banking - Automation
    description: Tenant transaction matching rules, assignments and historical runs.
  - name: Banking - Polling
    description: Polling schedule definitions for bank connector queries.
  - name: Banking - Dashboard
    description: Flexible tenant dashboard analytics and widget query endpoints.
  - name: Audit - Connector Logs
    description: Customer-visible bank connector request/response audit trail.
  - name: Payments - Orchestration
    description: Tenant Virtual POS, rate plan and payment intent orchestration.
paths:
  /banks/provider/variables:
    get:
      tags:
        - Banking - Accounts
      summary: List normalized provider connection field metadata
      description: >-
        Returns field definitions only; provider credential values are never
        returned. Date fields are transaction query controls, not stored
        credentials.
      operationId: getBanksProviderVariables
      responses:
        '200':
          $ref: '#/components/responses/ListResponse'
        '403':
          $ref: '#/components/responses/StatusResponse'
        '502':
          $ref: '#/components/responses/StatusResponse'
      security:
        - bearerAuth: []
components:
  responses:
    ListResponse:
      description: Paginated list response
      content:
        application/json:
          schema:
            type: object
            properties:
              status:
                type: boolean
              result:
                type: array
                items:
                  type: object
                  additionalProperties: true
              paginate:
                type: object
                properties:
                  total:
                    type: integer
                  size:
                    type: integer
                  page:
                    type: integer
                  totalPage:
                    type: integer
          example:
            status: true
            result: []
            paginate:
              total: 0
              size: 25
              page: 1
              totalPage: 0
    StatusResponse:
      description: Operation completed
      content:
        application/json:
          schema:
            type: object
            properties:
              status:
                type: boolean
          example:
            status: true
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````

## Related topics

- [Read normalized provider connection field metadata for a bank](/api-reference/banking--accounts/read-normalized-provider-connection-field-metadata-for-a-bank.md)
- [List bank connections with provider-owned sub-accounts](/api-reference/banking--accounts/list-bank-connections-with-provider-owned-sub-accounts.md)
- [Read encrypted provider credential status](/api-reference/banking--accounts/read-encrypted-provider-credential-status.md)
- [List enabled payment providers](/api-reference/payments--orchestration/list-enabled-payment-providers.md)
- [List tenant Virtual POS connections](/api-reference/payments--orchestration/list-tenant-virtual-pos-connections.md)
