Get all transactions
Returns all Onramp transactions
This endpoint will return all the onramp transactions
Get all Onramp transactions
POST https://api.remitquickly.com/onramp/api/v2/whiteLabel/onramp/allTransaction
Request Body
pageSize*
String
Number of Transactions per page. Should be greater than 0 and less than 500
page*
String
Current page Number
Should be greater than 0
{
"status": 1,
"code": 200,
"data": [
{
"transactionId": "635",
"createdAt": "2023-12-08T00:31:45.000Z",
"updatedAt": "2023-12-08T00:31:44.000Z",
"fromAmount": "700",
"toAmount": "18.32",
"fromCurrency": "AED",
"toCurrency": "usdc",
"chain": "matic20",
"paymentMethodType": "",
"depositAddress": "0x2EAf174Bf1CD624eD63e3C8c74Dd66B66e5cb273",
"status": "12",
"transactionHash": null
}
}{
"status": 0,
"code": 400,
"error": "Missing parameter -> page, pageSize."
}{
"status": 0,
"code": 500,
"error": "Unable to fetch Onramp Transactions at the moment. Please try again after some time."
}{
"status": 1,
"code": 200,
"data": [
{
"transactionId": "635",
"createdAt": "2023-12-08T00:31:45.000Z",
"updatedAt": "2023-12-08T00:31:44.000Z",
"fromAmount": "700",
"toAmount": "18.32",
"fromCurrency": "AED",
"toCurrency": "usdc",
"chain": "matic20",
"paymentMethodType": "",
"depositAddress": "0x2EAf174Bf1CD624eD63e3C8c74Dd66B66e5cb273",
"status": "12",
"transactionHash": null
}
}status -> 0 is for unsuccessful request, 1 is for a successful one.
transactionId -> unique identifier of the transaction
createdAt -> time at which the transaction was created.
updateAt -> time at which the transaction status is last updated.
fromAmount -> Amount of fiat received by the remitquickly.
toAmount -> actual amount of crypto bought at the time of swap/trade.
fromCurrency -> fiat used for the transaction.
toCurrency -> symbol of the coin e.g. USDT).
chain -> denotes which chain the coin was sent on (e.g. MATIC20) .
paymentMethodType -> payment method in fiat.
depositAddress -> Onchain wallet address to which the crypto was withdrawn to.
status -> current status of Remitquickly transaction
-4 -> wrong amount sent
-3 -> bank and kyc name mismatch
-2 -> transaction abandoned
-1 -> transaction timed out
0 -> transaction created
1 -> referenceId claimed
2 -> deposit secured
3, 13 -> crypto purchased
4, 15 -> withdrawal complete
5, 16 -> webhook sent
11 -> order placement initiated
12 -> purchasing crypto
14 -> withdrawal initiated
transactionHash -> transaction hash related to order.
Last updated