Get History

Retrieves all orders for a specified page

Note: page Number starts with 0.

Latest order will come first in the response. Per page limit is 50.

POST https://integration.coinmena.com/onramp-merchants/widget/getHistory

Request Body

NameTypeDescription

page*

String

page number for retrieving orders.

{
  "status": 1,
  "data": [
    {
      "orderId": 1,
      "coinCode": "usdt",
      "network": "matic",
      "coinAmount": 0.1,
      "status": 2,
      "startTime": 1721837658,
      "endTime": 1721838258,
      "depositHash": ""
    },
    {
      "orderId": 2,
      "coinCode": "usdc",
      "network": "matic",
      "coinAmount": 0.1,
      "status": -3,
      "startTime": 1721826845,
      "endTime": 1721828645,
      "depositHash": ""
    }
  ],
  "code": 200
}

Last updated