Skip to main content

Search and View Transactions

Every payment, payout, transfer, refund, and settlement in the PublicSquare system is associated with a transaction. PublicSquare leverages double entry accounting to track debit credits. This helps with end of day reconciliation processes.

After completing the Process Card Payments guide, you may want to pull detailed information about the transaction.

Getting Started

To get started, you will need a PublicSquare Account.

Get your Secret Key

Next you will need your Secret Key. Go to your Developers section and click Reveal for your Secret Key and copy the value.

Save the Secret Key as it will be used in the next steps of this guide.

Retrieve a Transaction

We will need to reference the payment's transaction_id to pull information about the payment.

For example, given you have a payment:

{
"id": "pmt_2YKewBonG4tgk12MheY3PiHDy",
"account_id": "acc_B518niGwGYKzig6vtrRVZGGGV",
"environment": "test",
"status": "successful",
"transaction_id": "trx_95rvMJvAVeG68W4NtLdfkN3LG",
...
}

Get Transaction by ID

We need to make a call to Get Transaction endpoint:

Get Transaction by ID
curl 'https://api.publicsquare.com/transactions/trx_95rvMJvAVeG68W4NtLdfkN3LG?include_type=true' \
-H 'Accept: application/json' \
-H 'X-API-KEY: <SECRET_API_KEY>'

Transaction Response

Given the above examples, you should see a transaction response similar to:

{
"id": "trx_95rvMJvAVeG68W4NtLdfkN3LG",
"account_id": "acc_B518niGwGYKzig6vtrRVZGGGV",
"environment": "test",
"status": "successful",
"amount": 1000,
"fee_amount": 36,
"net_amount": 964,
"currency": "USD",
"type_id": "pmt_2YKewBonG4tgk12MheY3PiHDy",
"type": "payment",
"processor": "nuvei",
"processor_id": "7110000000010554769",
"payment": {
"id": "pmt_2YKewBonG4tgk12MheY3PiHDy",
"account_id": "acc_B518niGwGYKzig6vtrRVZGGGV",
"environment": "test",
"status": "successful",
"transaction_id": "trx_95rvMJvAVeG68W4NtLdfkN3LG",
"amount": 1000,
"amount_capturable": 0,
"amount_charged": 1000,
"amount_refunded": 0,
"refunded": false,
"currency": "USD",
"payment_method": {
"card": {
"id": "card_AjkCFKAYiTsjghXWMzoXFPMxj",
"cardholder_name": "John Smith",
"last4": "4242",
"exp_month": "12",
"exp_year": "2025",
"brand": "visa",
"avs_code": "Y",
"cvv2_reply": "M",
"fingerprint": "CC2XvyoohnqecEq4r3FtXv6MdCx4TbaW1UUTdCCN5MNL"
}
},
"customer": {
"id": "cus_7Ay5mcUXAxwrN6wQEQUVEHBCJ",
"first_name": "John",
"last_name": "Smith",
"email": "john.smith@email.com",
},
"billing_details": {
"address_line_1": "111 Test St.",
"city": "Des Moines",
"state": "IA",
"postal_code": "51111",
"country": "US"
},
"shipping_address": {
"address_line_1": "111 Colorado Ave.",
"address_line_2": "Apt 403",
"city": "Des Moines",
"state": "IA",
"postal_code": "51111",
"country": "US"
},
"created_at": "2024-06-30T01:02:29.212Z",
"modified_at": "2024-06-30T01:02:29.212Z"
},
"created_at": "2024-06-30T01:02:29.212Z",
"modified_at": "2024-06-30T01:02:29.212Z"
}

Search Transactions

In many cases, you may need to search transactions to find records associated with a specific customer, payment method, or an order ID from your system. PublicSquare offers the ability to search and export across most fields of a customer, payment method, and transaction.

To perform a search, we can do the following:

Search Transactions
curl 'https://api.publicsquare.com/transactions?query=order1234' \
-H 'Accept: application/json' \
-H 'X-API-KEY: <SECRET_API_KEY>'

This should return a paginated result:

{
"pagination": {
"total_items": 924,
"page_number": 1,
"page_size": 10,
"total_pages": 93
},
"data": [
{
"id": "trx_95rvMJvAVeG68W4NtLdfkN3LG",
"account_id": "acc_B518niGwGYKzig6vtrRVZGGGV",
"environment": "test",
"status": "successful",
"external_id": "order1234",
"amount": 1000,
"fee_amount": 36,
"net_amount": 964,
"currency": "USD",
"type_id": "pmt_2YKewBonG4tgk12MheY3PiHDy",
"type": "payment",
"processor": "nuvei",
"processor_id": "7110000000010554769",
"created_at": "2024-06-30T01:02:29.212Z",
"modified_at": "2024-06-30T01:02:29.212Z"
},
...
]
}

Searchable Fields

The following fields are searchable using the query parameter:

EntityField
paymentid
paymentfraud_decision
refundid
refundamount
payoutid
transactionid
transactiontype
transactionstatus
transactionexternal_id
transactionprocessor
transactionprocessor_id
transactionamount
transactionnet_amount
transactionsettlement_id
customerid
customerexternal_id
customerfirst_name
customerlast_name
customerbusiness_name
customeremail
customerphone
customergovernment_identifier_last4
cardcardholder_name
cardlast4
bank_accountaccount_holder_name
bank_accountaccount_number_last4
If there are additional fields you want to be able to search over, please contact support.

Conclusion

This guide showed you how to retrieve and search transactions. Every payment, refund, payout, and settlement in the system generates a transaction.