Get detailed information about a specific Kajabi Payments payout, including all associated transactions.
Note: Date fields are returned in UTC:
initiated_date - Payout creation timestamp in UTCestimated_arrival_date - Expected arrival timestamp in UTCtransactions[].created_at - Transaction timestamp in UTCEach transaction in the transactions array includes:
Sale - All payments and that were received as part of this payoutRefund - Any refunds that occurred as part of this payoutAdjustment - All other adjustments that occurred as a part of this payout{
"data": {
"id": "payout_abc123",
"type": "kajabi_payments_payouts",
"attributes": {
"status": "Paid",
"amount": 1450.50,
"currency": "USD",
"initiated_date": "2024-01-10T10:00:00.000Z",
"estimated_arrival_date": "2024-01-17T10:00:00.000Z",
"bank_account": "Chase Bank - 1234",
"transactions": [
{
"transaction_type": "Sales",
"pricing_type": "Subscription",
"sales_tax": 0.0,
"amount": 99.00,
"currency": "USD",
"fee": 3.17,
"net": 95.83,
"customer_id": 789,
"customer_name": "John Doe",
"customer_email": "[email protected]",
"offer_ids": [
101
],
"offer_titles": [
"Premium Membership"
],
"provider": "Kajabi Payments",
"payment_method": "Visa",
"created_at": "2024-01-08T14:30:00.000Z",
"coupon_used": "SAVE20",
"presented_amount": 99.00,
"presented_currency": "USD",
"exchange_rate": 1.0,
"quantity": 1,
"order_number": "ORD-12345"
}
]
}
}
}
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Payout ID, for example payout_abc123
Site ID to authorize access (required), for example ?filter[site_id]=123
Success, returns payout details with all transactions