- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Look up transaction by refid?
Is there any way to search for a transaction (via the API) when all we have is the refid that we passed to getHostedPaymentPageRequest?
(We are seeking a way to do a batch of queries on any transactions done via hosted payment pages that didn't get returned to us for some reason, e.g., the user closing the browser immediately after paying. We know about webhooks, but we have some significant obstacles to using them, so we are hoping to find a shortcut that would allow us to search for transactions matching any refid values that we used to generate Accept Payment Pages but didn't get a transaction response from.)
โ01-11-2019 11:30 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
โ01-11-2019 03:23 PM - edited โ01-11-2019 03:25 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
-run unsettled transaction list API call
-run settled batch API call
-run transaction list API call on each batch
-combine all settled and unsettled transactions from above
Then pull my records and display them side by side in a table.If my records have more transactions than authorizes records per the previous api calls, or if my records have the same, then I havenโt missed any. If authorize records have more then I look for the missing transid. I only display the date, transid, and status in my table, but I am almost certain you could retrieve the refid and/or invoice number as well.
โ01-20-2019 09:44 AM

