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

# Queue a backfill from a completed current preview



## OpenAPI

````yaml /openapi/openapi.yaml post /banks/transaction-rules/{id}/backfill-runs
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/transaction-rules/{id}/backfill-runs:
    post:
      tags:
        - Banking - Automation
      summary: Queue a backfill from a completed current preview
      operationId: postBanksTransactionRulesByIdBackfillRuns
      parameters:
        - $ref: '#/components/parameters/Id'
        - $ref: '#/components/parameters/XCompanyIdRequired'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/TransactionRuleBackfillRequest'
      responses:
        '202':
          $ref: '#/components/responses/ItemResponse'
        '409':
          $ref: '#/components/responses/StatusResponse'
      security:
        - bearerAuth: []
components:
  parameters:
    Id:
      name: id
      in: path
      required: true
      schema:
        type: string
    XCompanyIdRequired:
      name: x-company-id
      in: header
      required: true
      schema:
        type: string
      description: Target tenant company id for a write operation.
  schemas:
    TransactionRuleBackfillRequest:
      type: object
      required:
        - previewRunId
      properties:
        previewRunId:
          type: string
  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 preview and backfill runs](/api-reference/banking--automation/list-preview-and-backfill-runs.md)
- [Queue a read-only historical rule preview](/api-reference/banking--automation/queue-a-read-only-historical-rule-preview.md)
- [Otomasyon kuralları ve atamalar](/rehberler/otomasyon-kurallari.md)
- [Change the authenticated user password and revoke refresh sessions](/api-reference/identity--auth/change-the-authenticated-user-password-and-revoke-refresh-sessions.md)
- [Read normalized provider connection field metadata for a bank](/api-reference/banking--accounts/read-normalized-provider-connection-field-metadata-for-a-bank.md)
