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

# Get transaction bundle history

> Return the complete change history for a transaction bundle. Each entry records a creation, modification, or deletion of a transaction, membership, donation, or status change.



## OpenAPI

````yaml /src/autogen/donation-membership-transaction-openapi3.0.yaml get /v1/transaction_bundles/{id}/history
openapi: 3.1.0
info:
  description: >-
    This OpenAPI 3.1 specification describes the public API of the Qomon
    platform. It is generated from the code and serves both as documentation for
    API consumers and as a contract for future development.
  title: Qomon API Reference
  version: 0.0.1
servers:
  - description: Production
    url: https://incoming.qomon.app
security:
  - bearerAuth: []
tags:
  - description: >-
      Create, read, update, and delete transaction bundles. A bundle is a single
      payment event grouping one or more transactions with optional donations
      and memberships.
    name: Transaction bundles
  - description: >-
      Read individual transactions (the payment legs of a bundle) with
      server-side filtering by date, amount, status, payment method and
      campaign, plus a contact's full transaction history.
    name: Transactions
  - description: >-
      List donations directly, filtered by donation date, contact, price or
      amount — without fetching whole bundles.
    name: Donations
  - description: >-
      List memberships directly, filtered by start/end/creation date, contact,
      price or amount.
    name: Memberships
  - description: >-
      Read-only configuration resources: transaction settings, statuses,
      donation and membership prices, and code campaigns.
    name: Settings and configuration
paths:
  /v1/transaction_bundles/{id}/history:
    get:
      tags:
        - Transaction bundles
      summary: Get transaction bundle history
      description: >-
        Return the complete change history for a transaction bundle. Each entry
        records a creation, modification, or deletion of a transaction,
        membership, donation, or status change.
      operationId: list-transaction-bundle-history
      parameters:
        - description: Transaction bundle ID.
          in: path
          name: id
          required: true
          schema:
            description: Transaction bundle ID.
            examples:
              - 42
            format: int64
            minimum: 0
            type: integer
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/StatusEnvelopeListTransactionBundleHistoryEntry
          description: OK
        default:
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ErrorModel'
          description: Error
components:
  schemas:
    StatusEnvelopeListTransactionBundleHistoryEntry:
      additionalProperties: true
      properties:
        data:
          items:
            $ref: '#/components/schemas/TransactionBundleHistoryEntry'
          type:
            - array
            - 'null'
        status:
          description: Operation result.
          examples:
            - success
          type: string
      required:
        - status
        - data
      type: object
    ErrorModel:
      additionalProperties: true
      properties:
        detail:
          description: >-
            A human-readable explanation specific to this occurrence of the
            problem.
          examples:
            - Property foo is required but is missing.
          type: string
        errors:
          description: Optional list of individual error details
          items:
            $ref: '#/components/schemas/ErrorDetail'
          type:
            - array
            - 'null'
        instance:
          description: >-
            A URI reference that identifies the specific occurrence of the
            problem.
          examples:
            - https://example.com/error-log/abc123
          format: uri
          type: string
        status:
          description: HTTP status code
          examples:
            - 400
          format: int64
          type: integer
        title:
          description: >-
            A short, human-readable summary of the problem type. This value
            should not change between occurrences of the error.
          examples:
            - Bad Request
          type: string
        type:
          default: about:blank
          description: A URI reference to human-readable documentation for the error.
          examples:
            - https://example.com/errors/example
          format: uri
          type: string
      type: object
    TransactionBundleHistoryEntry:
      additionalProperties: true
      properties:
        created_at:
          description: Creation timestamp.
          format: date-time
          type: string
        id:
          description: Unique identifier.
          format: int64
          minimum: 0
          type: integer
        kind:
          description: Updated entity kind.
          enum:
            - transaction
            - transaction_status
            - donation
            - membership
          type: string
        new:
          additionalProperties: {}
          description: New values snapshot.
          type: object
        old:
          additionalProperties: {}
          description: Previous values snapshot.
          type: object
        source:
          additionalProperties: {}
          description: Source metadata.
          type: object
        target_id:
          description: Target record identifier.
          format: int64
          minimum: 0
          type: integer
        transaction_bundle_id:
          description: Transaction bundle identifier.
          format: int64
          minimum: 0
          type: integer
        user:
          $ref: '#/components/schemas/UserForTransaction'
          description: User responsible for the change.
      required:
        - id
        - created_at
        - transaction_bundle_id
        - target_id
        - kind
        - user
      type: object
    ErrorDetail:
      additionalProperties: true
      properties:
        location:
          description: >-
            Where the error occurred, e.g. 'body.items[3].tags' or
            'path.thing-id'
          type: string
        message:
          description: Error message text
          type: string
        value:
          description: The value at the given location
      type: object
    UserForTransaction:
      additionalProperties: true
      properties:
        avatar:
          description: Avatar URL.
          type: string
        firstname:
          description: User first name.
          type: string
        id:
          description: Unique identifier.
          format: int64
          minimum: 0
          type: integer
        surname:
          description: User surname.
          type: string
      required:
        - id
      type: object
  securitySchemes:
    bearerAuth:
      bearerFormat: opaque
      description: >-
        OAuth2 access token. Pass the token in the Authorization header as
        `Bearer <token>`. The token is looked up in Redis to resolve the caller
        identity.
      scheme: bearer
      type: http

````