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

# Read normalized provider connection field metadata for a bank

> Requires a tenant admin or operator Bearer token and proxies metadata through Core without exposing the provider envelope.



## OpenAPI

````yaml /openapi/openapi.yaml get /banks/provider/variables/{bankCode}
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/{bankCode}:
    parameters:
      - name: bankCode
        in: path
        required: true
        schema:
          type: string
    get:
      tags:
        - Banking - Accounts
      summary: Read normalized provider connection field metadata for a bank
      description: >-
        Requires a tenant admin or operator Bearer token and proxies metadata
        through Core without exposing the provider envelope.
      operationId: getBanksProviderVariablesByBankCode
      responses:
        '200':
          $ref: '#/components/responses/ItemResponse'
        '400':
          $ref: '#/components/responses/StatusResponse'
        '403':
          $ref: '#/components/responses/StatusResponse'
        '404':
          $ref: '#/components/responses/StatusResponse'
        '502':
          $ref: '#/components/responses/StatusResponse'
      security:
        - bearerAuth: []
components:
  responses:
    ItemResponse:
      description: Single entity response
      content:
        application/json:
          schema:
            type: object
            properties:
              status:
                type: boolean
              result:
                type: object
                additionalProperties: true
          example:
            status: true
            result:
              id: 64f000000000000000000001
    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

- [List normalized provider connection field metadata](/api-reference/banking--accounts/list-normalized-provider-connection-field-metadata.md)
- [Read encrypted provider credential status](/api-reference/banking--accounts/read-encrypted-provider-credential-status.md)
- [List bank connections with provider-owned sub-accounts](/api-reference/banking--accounts/list-bank-connections-with-provider-owned-sub-accounts.md)
- [Register a bank connection for the tenant](/api-reference/banking--accounts/register-a-bank-connection-for-the-tenant.md)
- [Remove encrypted provider credentials](/api-reference/banking--accounts/remove-encrypted-provider-credentials.md)
