> ## 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 manual and automatic transaction assignments



## OpenAPI

````yaml /openapi/openapi.yaml get /banks/transactions/{id}/assignments
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/transactions/{id}/assignments:
    get:
      tags:
        - Banking - Automation
      summary: List manual and automatic transaction assignments
      operationId: getBanksTransactionsByIdAssignments
      parameters:
        - $ref: '#/components/parameters/Id'
        - $ref: '#/components/parameters/XCompanyId'
        - $ref: '#/components/parameters/XCompanyIds'
      responses:
        '200':
          $ref: '#/components/responses/ListResponse'
        default:
          $ref: '#/components/responses/ErrorResponse'
      security:
        - bearerAuth: []
components:
  parameters:
    Id:
      name: id
      in: path
      required: true
      schema:
        type: string
    XCompanyId:
      name: x-company-id
      in: header
      required: false
      schema:
        type: string
      description: >-
        Target tenant company id. Required for write operations on customer
        banking endpoints.
    XCompanyIds:
      name: x-company-ids
      in: header
      required: false
      schema:
        type: string
      description: >-
        Optional comma-separated company ids for read scope filtering. If
        omitted, all authorized companies are used.
  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
    ErrorResponse:
      description: Request failed
      content:
        application/json:
          schema:
            type: object
            required:
              - status
            properties:
              status:
                type: boolean
                const: false
              error:
                type: object
                additionalProperties: true
          example:
            status: false
            error:
              code: AUTHENTICATION_REQUIRED
              message: Authentication is required
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````

## Related topics

- [Delete a manual assignment](/api-reference/banking--automation/delete-a-manual-assignment.md)
- [Update a manual assignment](/api-reference/banking--automation/update-a-manual-assignment.md)
- [Add or reactivate a protected manual assignment](/api-reference/banking--automation/add-or-reactivate-a-protected-manual-assignment.md)
- [List ingested bank transactions](/api-reference/banking--transactions/list-ingested-bank-transactions.md)
- [Run an idempotent manual provider transaction sync](/api-reference/banking--accounts/run-an-idempotent-manual-provider-transaction-sync.md)
