Reconciliation Reports

NjiaPay Transactions

Your master list of all successful transactions processed through NjiaPay.

The NjiaPay Transactions report is your starting point for reconciliation. It contains every successful payment that NjiaPay processed for your merchant account during the selected period. Think of it as your sales ledger, the definitive list of what your customers paid.

Last updated: March 2026

When to Use This Report

  • As your master checklist when reconciling against PSP settlements
  • To calculate total volume by currency, PSP, or time period
  • To verify your internal order system matches NjiaPay's records (using the reference_id column)
  • As input for pivot tables summarising daily/weekly/monthly revenue

Column Reference

ColumnDescriptionExample
created_tsDate and time the payment was processed2025-11-01 00:01:07
created_monthMonth number (1--12) for easy filtering and pivot tables11
created_yearYear for easy filtering2025
intent_idNjiaPay's unique payment identifier (UUID format)018b2f4a-9c3d-7a1e-...
attempt_idNjiaPay's attempt number for this payment1837227
merchant_idYour merchant identifier in NjiaPayacme
reference_idYour order/payment reference (what you sent when creating the payment)ACME_ORDER_50001
currencyThe currency the customer paid in (ISO 4217)USD, GBP, EUR
amountPayment amount in major units (e.g. dollars, not cents)10.0
payment_partnerThe PSP that processed this paymentAdyen, PayPal, StartButton
payment_partner_refThe PSP's own reference ID for this transactionF5GZ36JJWJ7J3WF3
intent_is_successAlways True in this report (only successful payments are included)True
attempt_is_successAlways True in this reportTrue
connection_idThe specific PSP connection/account usedadyen-global, paypl-xxxxx

Example Data

Below is an example of what this report looks like when opened in Excel or Google Sheets. Values have been fabricated for illustration purposes.

created_tscreated_monthcreated_yearintent_idattempt_idmerchant_idreference_idcurrencyamountpayment_partnerpayment_partner_refconnection_id
2025-11-01 00:03:12112025018b2f4a-9c3d-...2041001acmeACME_ORDER_50001USD10.0AdyenH7KM42NNRJ8P2WF3adyen-global
2025-11-01 00:04:45112025018b2f4b-ab12-...2041002acmeACME_ORDER_50002GBP10.0AdyenR9JT3KM8V6DJ7LG6adyen-global
2025-11-01 00:06:22112025018b2f4c-d233-...2041003acmeACME_ORDER_50003EUR3.99PayPal72S84291VH2391262paypl-xxxxx
2025-11-01 00:08:51112025018b2f4a-c8d1-...2041006acmeACME_ORDER_50004GBP10.0AdyenCZZLKJ8QMOE3TLH4adyen-global
2025-11-01 00:09:33112025018b2f4b-83dd-...2041007acmeACME_ORDER_50005USD3.99AdyenREIJMINKRWHDE4G4adyen-global
2025-11-01 00:11:26112025018b2f4f-61f8-...2041008acmeACME_ORDER_50006AUD7.5AdyenX5UDSH784W6GCIH7adyen-global
2025-11-01 00:14:33112025018b2f51-7b37-...2041011acmeACME_ORDER_50007USD10.0AdyenE74UUAON76AMW4I7adyen-global
2025-11-01 00:19:24112025018b2f57-e4f4-...2041019acmeACME_ORDER_50014NGN3800.0StartButtonstbtn-xxxxxstbtn-xxxxx
2025-11-01 00:22:43112025018b2f58-2c91-...2041021acmeACME_ORDER_50016USD3.99PayPal26144392VB293221Lpaypl-xxxxx

Columns intent_is_success and attempt_is_success (always True) omitted for readability.

Tips for Working with This Report

Pivot Table: Daily Revenue by Currency

In Excel or Google Sheets:

  1. Select all data
  2. Insert > Pivot Table
  3. Set Rows = created_ts (grouped by Day), Columns = currency, Values = SUM of amount

Cross-check Against Your Order System

To look up NjiaPay amounts against your internal records, use the reference_id column with an INDEX/MATCH formula (more flexible than VLOOKUP):

=INDEX(your_orders[amount], MATCH(G2, your_orders[reference_id], 0))

Where G2 is the reference_id cell in the NjiaPay report. If the returned amount differs from the amount column, investigate immediately.

Filter by PSP

To see only Adyen transactions:

=COUNTIFS(njia_tx[payment_partner], "Adyen")
=SUMIFS(njia_tx[amount], njia_tx[payment_partner], "Adyen", njia_tx[currency], "USD")

Successful Payments

See each transaction's reconciliation status, matched or awaiting PSP settlement

Refunds, Chargebacks & Pending

Non-success transactions: refunds, chargebacks, and incomplete payments