Get Order Details

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: https://api-pay.just.money/v1/checkout/getOrderByHash/:hash

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"
}

Last updated