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
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
}
status: Indicates the status of the API response.
1: The response is successful.
data: Contains a list of orders.
orderId: The unique identifier for the order (e.g.,
1442
).coinCode: The symbol of the cryptocurrency used in the order (e.g.,
usdt
).network: The blockchain network on which the order was processed (e.g.,
matic
).coinAmount: The amount of cryptocurrency involved in the order (e.g.,
0.1
).status: The status of the order. Values may include:
-3: Order Cancelled.
-1: Order Failed.
0: Waiting for Payment.
1: Payment received, waiting for block confirmation.
2: Payment completed with confirmation.
startTime: The timestamp (in Unix format) when the order was initiated (e.g.,
1721837658
).endTime: The timestamp (in Unix format) when the order was completed or ended (e.g.,
1721838258
).paymentHash: A unique hash for the payment transaction. An empty string indicates no hash was generated (e.g.,
0xc089d60282fb5384b62b97505a4b1258049cee8ec2b3776a
).
code: The HTTP status code of the response.
200: Indicates that the request was successfully processed.
Last updated