Skip to main content
GET
Get a transaction by ID

Authorizations

Authorization
string
header
required

Customer API key obtained from the admin portal (e.g. 1club_sk_live_...)

Path Parameters

id
integer
required

Transaction ID

Response

Transaction details

A billing transaction with amounts, payment status, and links to the originating booking or membership.

id
integer
description
string | null
transactionType
string | null

TransactionType enum value (e.g. booking_creation, membership_creation, product_sale, membership_recurrence, etc.).

bookingId
integer | null
membershipId
integer | null
createdAt
string<date-time>
date
string<date-time>
paymentStatus
enum<string>
Available options:
pending,
paid,
void,
failed,
settled,
overdue,
partially_paid,
refunded,
cancelled
amount
number<decimal>

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.

taxAmount
number<decimal>

Tax portion. Serialized as a decimal string on the wire to preserve precision.

totalAmount
number<decimal>

Total billed amount (amount + taxAmount). Serialized as a decimal string on the wire to preserve precision.