List transactions for the organization
Returns transactions for the organization associated with the API token, filtered by transaction creation time to a window of at most 24 hours and ordered by createdAt descending. When startDate and endDate are omitted, the window defaults to the last 24 hours (endDate = now, startDate = now - 24h). When only one of the two is provided, the other is derived from the 24-hour window. Transactions with amount = 0 are excluded. Requires the transactions:read scope.
Documentation Index
Fetch the complete documentation index at: https://docs.1club.ai/llms.txt
Use this file to discover all available pages before exploring further.
Authorizations
Customer API key obtained from the admin portal (e.g. 1club_sk_live_...)
Query Parameters
Inclusive lower bound on transaction createdAt. Defaults to endDate - 24h.
Inclusive upper bound on transaction createdAt. Defaults to now.
Filter by payment status. When omitted, all statuses are returned.
pending, paid, void, failed, settled, overdue, partially_paid, refunded, cancelled Maximum number of transactions to return.
1 <= x <= 100Number of transactions to skip.
x >= 0Response
List of transactions
TransactionType enum value (e.g. booking_creation, membership_creation, product_sale, membership_recurrence, etc.).
pending, paid, void, failed, settled, overdue, partially_paid, refunded, cancelled Pre-tax amount. Serialized as a decimal string on the wire (e.g. "25.00") to preserve precision - parse rather than relying on JSON number behavior.
Tax portion. Serialized as a decimal string on the wire to preserve precision.
Total billed amount (amount + taxAmount). Serialized as a decimal string on the wire to preserve precision.