Skip to main content
GET
/
v1
/
transaction_bundles
/
{id}
Find a transaction_bundle by id
curl --request GET \
  --url https://incoming.qomon.app/v1/transaction_bundles/{id} \
  --header 'Authorization: Bearer <token>'
{
  "status": "success",
  "data": {
    "id": 123,
    "transactions": [
      {
        "id": 123,
        "amount": 123,
        "currency": "<string>",
        "payment_method_kind": "<string>",
        "payment_method": {},
        "contact_id": 123,
        "date": "2023-11-07T05:31:56Z",
        "code_campaign": "<string>",
        "delivered_at": "2023-11-07T05:31:56Z",
        "delivery_token": "<string>",
        "comment": "<string>",
        "comment_date": "2023-11-07T05:31:56Z",
        "reimbursed_amount": 123,
        "unpaid_amount": 123,
        "external_transaction_id": 123,
        "status_id": 123
      }
    ],
    "memberships": [
      {
        "id": 123,
        "contact_id": 123,
        "start_date": "2023-11-07T05:31:56Z",
        "end_date": "2023-11-07T05:31:56Z",
        "membership_price_id": 123,
        "amount": 123,
        "amount_initial": 123,
        "currency": "<string>",
        "comment": "<string>",
        "rolling_year": true
      }
    ],
    "donations": [
      {
        "id": 123,
        "contact_id": 123,
        "date": "2023-11-07T05:31:56Z",
        "amount": 123,
        "initial_amount": 123,
        "currency": "<string>",
        "donation_price_id": 123,
        "affectation": "<string>",
        "comment": "<string>"
      }
    ],
    "summary": {
      "transactions_count": 123,
      "memberships_count": 123,
      "donations_count": 123
    }
  }
}

Documentation Index

Fetch the complete documentation index at: https://qomon-86428773.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
integer
required

ID of transaction_bundle to return

Response

Successful operation

status
string
Example:

"success"

data
object

A transaction bundle groups together related financial operations (transactions, memberships, donations) that are part of a single payment event.

Structure:

  • transactions: Array of payment transactions (required - at least one)
  • memberships: Array of membership subscriptions (optional)
  • donations: Array of donation contributions (optional)
  • summary: Automatically calculated counts (read-only, returned in responses only)

When Creating:

  • Omit id field (auto-generated)
  • Omit summary (auto-calculated, returned in responses)
  • Include at least one transaction with required fields

When Updating:

  • Include id field matching the bundle ID in the URL
  • Include id for existing items you want to modify
  • Omit id for new items you want to add
  • Note: Updates are additive - items not included in the request remain in the bundle unchanged (they are not removed)
Last modified on May 19, 2026