Rocketfuel Blockchain
  • Welcome to Rocketfuel
  • Core Concepts
    • Overview
    • Partners
    • Merchants
    • Shoppers
    • Exchanges
    • QR Payments
    • Bank Payments
    • Invoices
    • Settlements
  • Plug-ins and SDKs
    • Bigcommerce
    • Magento
    • PrestaShop
    • WooCommerce
    • Webflow
    • Web SDK
  • Developer Guides
    • Overview
    • Quick Start
    • API Reference
      • PayIns
        • Overview
        • Encryption Algorithm
          • Public Key Based
          • Secret Key Based
        • Authentication
          • Authenticate a merchant
          • Authentication Without Email / Password
        • RocketFuel UI Integration
          • Generate Invoice Link
          • Payment Processing
            • RKFL Payment Page
            • RKFL Payment Widget
          • Transaction Lookup
            • Lookup using Auth
            • Lookup using Public Key
          • Webhooks
          • Handling Partial Payments
        • Custom UI Integration
          • Cryptocurrencies listing
          • Generate QR Code
          • QR Payment Status
          • Transactions Lookup
          • Webhooks
          • Handle Partial Payment
        • Utility APIs
          • Subscriptions/Recurring Payments
          • Store info
          • Shopper
            • Shopper manual signup
            • Verify shopper's email id
            • Shopper manual login
            • Shopper info
            • Shopper wallet balance
          • Exchange Payment
            • Exchanges listing
            • Pre-payment validation check
            • Payable amount
            • Trigger Exchange payment
          • Transaction listing
          • Order info
      • Payout
        • Overview
        • Add Payee
        • API Guide
        • Webhooks
    • Swagger API
  • Integrations
    • RocketFuel Integration
      • Objective
      • Target Audience
      • Product Feature overview
      • "How To" Guide
        • Sign up as a Merchant
        • KYC Verification
        • Using the RocketFuel API for Custom Integration
        • Using the RocketFuel Pre-built Solutions for Custom Integration
        • How to Use Testnet for Transactions
      • FAQ and Tips
  • Web UI
  • User Guide and Help Videos
    • White Label Requirements
    • ACI Merchant Onboarding Document (Certification)
    • Merchant User Guide
      • Sign-up Process
      • Sign-in Process
      • Merchant Dashboard
      • Transactions
      • Shoppers
      • Reports
      • Invoices
      • Users
      • Funds
      • Bank/ACH Payments
      • Instore
      • Settlements
      • Subscriptions
      • Release Notes
      • Verification
      • Help/FAQ
      • Plugins
        • How to Setup RocketFuel on Different plugins
        • How to Use Rocketfuel With Different SDKs
      • Settings
    • Shopper User Guide
      • Dashboard
      • Purchases
      • Profile
      • Exchange
      • Bank/ACH Payments
      • Help/FAQ
      • Settings
      • Subscriptions
    • Partner User Guide
      • Dashboard
        • How to Invite Merchants
        • How to Generate Auth Header for Merchants
      • Transactions
      • Refunds
      • Shoppers
      • Merchants
      • Reports
      • Subscriptions
      • Payment Settings
      • Settings
      • Release Notes
    • Super Partner Guide
      • Overview
      • How to Invite Partners
  • Release Notes
    • Change Log
Powered by GitBook
On this page

Was this helpful?

  1. Developer Guides
  2. API Reference
  3. PayIns
  4. Utility APIs

Transaction listing

PreviousTrigger Exchange paymentNextOrder info

Last updated 2 years ago

Was this helpful?

The RKFL merchant portal is a one-stop solution for all merchant needs. The RKFL merchant portal offers a wide range of features ex: Dashboard, Transaction listing, Shopper listing, Reports, Invoice, Fund, Account, Subscription, etc. Please see the RKFL merchant portal reference .

The RKFL doesn't publish all the APIs of the merchant portals. However, a few APIs are available to simulate the features on the merchant website.

This API accepts the merchant access token and returns the transaction list in a pagination manner.

The below screenshot display a transaction listing payload from the RKFL merchant portal.

GET transactions?limit=5&offset=0&from=2022-01-01&to=2022-07-20&timezone=-330

Query Parameters

Name
Type
Description

limit

Number

The number of records to return is helpful in pagination.

offset

Number

Record starting from, helpful in pagination.

from

Date

Start date format "yyyy-mm-dd"

to

Date

End date format "yyyy-mm-dd"

timezone*

Number

-330

query

String

To search the record. Works on "Oder Id", "userId", "Transaction Id", "nativeAmount", "currency", "merchantId", "stockId", "firstName", "email", and "companyName"

Headers

Name
Type
Description

Authorization*

String

"Bearer" + merchant access token

{
    "ok": true,
    "result": [
        {
            "offerId": "1657806690208",
            "name": "[email protected]",
            "email": "[email protected]",
            "orderDate": "Jul 14 2022",
            "orderTime": "07:22 PM",
            "displayStatus": "Pending",
            "paymentMethod": "Bank",
            "fiatAmount": "10.00",
            "fiatCurrency": "USD",
            "cryptoAmount": "10",
            "cryptoCurrency": "USD",
            "paymentMode": "dwolla",
            "txnHash": "NA",
            "partnerName": "partner",
            "paymentStatus": 0,
            "status": true,
            "receivedAmount": "0",
            "conversionRate": {
                "fiatCurrency": "USD",
                "rate": 1
            }
        },
        {
            "offerId": "8a0c7a4a18159f25501815bc0ecb44989",
            "name": "Test Tester",
            "email": "[email protected]",
            "orderDate": "Jul 14 2022",
            "orderTime": "06:52 PM",
            "displayStatus": "Success",
            "paymentMethod": "Bank",
            "fiatAmount": "159.01",
            "fiatCurrency": "EUR",
            "cryptoAmount": "160.66809427",
            "cryptoCurrency": "USD",
            "paymentMode": "highriskcc",
            "txnHash": "NA",
            "partnerName": "partner",
            "paymentStatus": 1,
            "status": true,
            "receivedAmount": "160.66809426609998",
            "conversionRate": {
                "fiatCurrency": "USD",
                "rate": 0.9896800029049088
            }
        }
    ]
}
here