JustMoney
  • Introduction
  • Whitepaper
  • $JM Token
    • Utility
    • Holders
    • Providers
    • Where to Buy
    • Additional Info
    • Contract Address
  • Partnership
    • Overview
    • Products
    • Support
  • JustMoney Swap
    • Overview
    • Token Listing
      • Self-listing
        • Custom Token Import
        • Adding Liquidity
      • White label solution
      • Marketing
    • Discounted swap fees on TRON (5-19trx)
    • Earn JM every day by providing energy
    • Multi-DEX routing
    • Widgets
      • Widget Builder
      • Single Chain
        • Usage
        • Examples
      • Multi-chain
      • Cross-chain
      • Bridge Widget
        • Usage
        • Examples
    • Holder ranks
  • JustMoney Bridge
    • Overview
  • JUSTMONEY EXPLORER
    • Overview
    • Blockchain Explorer
    • Token (dex view)
    • dApp store
      • Submit a project
    • Other features
    • GraphQL Server and Indexer
  • JustMoney Spot
    • Overview
    • FAQ
    • TradingView
  • JustMoney Pay
    • Overview
    • E-commerce integration
      • Woocommerce Plugin
    • Mobile Payment terminal
    • Payment Links
    • Donations
      • Installation
      • Customizing
    • API documentation
      • Creating an Order
      • Get Order Details
      • Get Order Status
  • JustMoney Invoice
    • Overview
    • Cost of Use
    • Payment Processing
    • Features
    • How to Create Invoice
  • JustMoney Gift
    • Overview
    • How to Send
    • How to Claim
    • FAQ
  • Brand Kit
  • Contact Us
Powered by GitBook
On this page
  1. JustMoney Pay
  2. API documentation

Get Order Details

PreviousCreating an OrderNextGet Order Status

Last updated 2 years ago

You can fetch all the details of the order from here. This does not validate the confirmation of the blockchain. If you want to see if the payment transaction is confirmed you should use getStatusByHash instead.

Endpoint:

Request Type: GET

Returns:

{
  "id": "our order id",
  "wallet_evm": "address",
  "wallet_tron": "address",
  "src": "your source",
  "returnUrl": "your return url",
  "statusHookUrl": "your status hook url",
  "totalAmount": "total amount of the order",
  "orderId": "your order id",
  "hash": "hash that we generated",
  "network": "network of payment (user already paid)",|
  "tokenPaidWith": "token that user used for the payment",
  "currency": "USD",
  "transactionHash": "transaction hash in blockchain (user already paid)",
  "status": "CREATED | PROCESSING | COMPLETED",
  "createdAt": "Date and time of the creation",
  "updatedAt": "Date and time of the last update"
}
https://api-pay.just.money/v1/checkout/getOrderByHash/:hash