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

Order info

PreviousTransaction listingNextPayout

Last updated 8 months ago

Was this helpful?

The RKFL provides an API to return the cart information to display on the payment page. However, the merchant website already has the cart information to show on any page, and the RKFL API is optional.

The idea of the cart info on the payment page is similar to the below image. Please note that in the order details section, the shopper has two items including one subscription item. The RKFL supports only the exchange payment for subscription items, so the rest of the tabs are disabled.

GET /invoices?uuid={uuid}

Query Parameters

Name
Type
Description

uuid*

String

UUID of invoice

Headers

Name
Type
Description

Authorization*

String

"Bearer" + merchant access token

{
  "ok": true,
  "result": {
    "returnval": {
      "cart": [
        {
          "id": "2779",
          "name": "Mouse",
          "price": 3,
          "quantity": 2
        },
        {
          "id": "2683",
          "name": "Each 3rd Month",
          "price": 28,
          "quantity": 1,
          "frequency": "quarterly",
          "isSubscription": true,
          "merchantSubscriptionId": "c7af15070d784b4fa11ac19ffa984059-2683"
        }
      ],
      "order": "c7af15070d784b4fa11ac19ffa984059",
      "amount": "34",
      "currency": "USD",
      "encrypted": "TiFeyfAMzrZfOhgP13oKVTV+r8lVS2EX7S+2DYBS3GfNboAw09rwTeUow370uKj35d3S1WKFFd1wH71+H/9DNGJUxkEoHLjYJhvtY7HzqzyhPti08Ms53tN9Y+i/RLpTSnO2nnsV868RNG+JurE3NwvBLCpWeEvE50fyrnJcYj9qdDKhUzFzVGhUYICL/z50tOmnBfc7Onxe/8COmW7bLZDcRGtlO1I69DujhpZP4xql98UNZNgD+7se2QIq3YQLLIpYHfRx91YgINI0sj1WT68/iznVYYg1zhYtogbBjtytr/8xhF9d/WxaDAgl3YQPRxOE6NYt9myUVYJcpRpQyQ==",
      "merchant_id": "2335689b-7a4d-420a-9cc0-f5d765a96967",
      "redirectUrl": "",
      "shippingAddress": null,
      "username": "mfvth",
      "companyName": "Hush Puppies "
    }
  }
}

The "uuid" returns in the response of "POST /invoices"