Skip to main content
CARD_TRANSACTION_FEES itemises what Reap billed you for that arose from card use: purchases, ATM withdrawals, refunds, wallet provisioning, and 3DS authentication. Request it as described on the statements overview.

What a row is

A row is one fee event, not one transaction. A single transaction produces several rows when it is authorized, captured in parts, refunded, or later corrected. Join them on transactionId. Some rows carry no transaction at all, because the fee is priced per occurrence: provisioning a card into Apple Pay or Google Pay, a 3DS authentication, and non-financial ATM actions such as a PIN change or a balance enquiry. Those rows leave the event columns empty, and feeType says what happened. Their amount columns read zero, which is their real value rather than a placeholder.

Signs

Amounts follow the cardholder’s money. Spend is positive, refunds and reversals are negative, so summing a column over a period gives you a net figure with no sign handling of your own. Fees and interchange are signed from your point of view: what you collected or earned is positive, and what was given back is negative. ADJUSTMENT rows are corrections issued against a fee assessed earlier, and they carry whichever sign undoes the original. Include them in every total.

Currencies

Two denominations coexist in one file. currency is your card program currency, and governs amount, billAmount, originalAmount, fxFee, atmVariableFee, and atmFixedFee. Columns whose names end in Usd are US dollars on every program, whatever your program currency. billAmountUsd is billAmount converted at the rate for the day the transaction happened.

Amounts

Three amount columns describe the same transaction from different angles:
  • billAmount is the transaction before the fees you applied.
  • amount is what the cardholder was charged, so it equals billAmount plus fxFee, atmVariableFee, and atmFixedFee. It matches what the transactions API returns.
  • billAmountUsd is billAmount in US dollars.
The difference between amount and billAmount is exactly the fees you collected from your cardholder.

Interchange

Interchange is reported in full, as earned on the transaction. grossInterchangeUsd is before scheme deductions and netInterchangeUsd is after them. Neither is your share of it: the share is a percentage set out in your pricing schedule, which the file does not carry.

Columns

Request a subset with fields and you get exactly these names, in the order you asked for.

Scale and ordering

Card-currency columns carry two decimal places. Usd columns carry seven, which is the scale Reap computes and bills at, so round once at the end rather than per row. Rows are ordered by occurredAt, oldest first. See the file format for the dialect every statement shares.