Get user all transaction

Returns all onramp transaction for a user.

This endpoint will provide all onramp transactions for a user.

Note:

  • This endpoint necessitates the inclusion of the customerId parameter, as it is designed to retrieve all user's onramp transactions.

Get all onramp transaction for an user

POST https://integration.coinmena.com/onramp/api/v2/whiteLabel/onramp/allUserTransaction

Request Body

NameTypeDescription

page*

String

Current page Number

Should be greater than 0

customerId*

String

Unique id received from /kyc/url

pageSize*

String

Number of Transactions per page. Should be greater than 0 and less than 500

{
    "status": 1,
    "code": 200,
    "data": [
        {
            "transactionId": "635",
            "createdAt": "2023-12-08T00:31:45.000Z",
            "updatedAt": "2023-12-08T00:31:44.000Z",
            "fromAmount": "1741",
            "toAmount": "18.32",
            "fromCurrency": "AED",
            "toCurrency": "usdc",
            "chain": "matic20",
            "paymentMethodType": "AED-BANK-TRANFER",
            "depositAddress": "0x2EAf174Bf1CD624eD63e3C8c74Dd66B66e5cb273",
            "status": "2",
            "transactionHash": "0x9b34a0e4897cd834847d8bbb8814eba72149f914785c406684d4f887ac"
        },
        {
            "transactionId": "634",
            "createdAt": "2023-12-07T22:19:28.000Z",
            "updatedAt": "2023-12-07T22:19:27.000Z",
            "fromAmount": "173435",
            "toAmount": "9.78",
            "fromCurrency": "AED",
            "toCurrency": "usdc",
            "chain": "matic20",
            "paymentMethodType": "AED-BANK-TRANFER",
            "depositAddress": "0x2EAf174Bf1CD624eD63e3C8c74Dd66B66e5cb273",
            "status": "2",
            "transactionHash": "0x9b34a0e4897cd834847d8bbb8814eba72149f914785c406684d4f887ac"
        },
        {
            "transactionId": "633",
            "createdAt": "2023-12-07T21:59:27.000Z",
            "updatedAt": "2023-12-07T21:59:27.000Z",
            "fromAmount": "1112",
            "toAmount": "60.92",
            "fromCurrency": "AED",
            "toCurrency": "usdc",
            "chain": "matic20",
            "paymentMethodType": "AED-BANK-TRANFER",
            "depositAddress": "0x57414adbBbc4BBA36f1dE26b2dc1648b28ae7799",
            "status": "1",
            "transactionHash": "0x9b34a0e4897cd834847d8bbb8814eba72149f914785c406684d4f887ac"
        },
        {
            "transactionId": "632",
            "createdAt": "2023-12-07T21:02:13.000Z",
            "updatedAt": "2023-12-07T21:02:13.000Z",
            "fromAmount": "1065",
            "toAmount": "10.82",
            "fromCurrency": "AED",
            "toCurrency": "usdc",
            "chain": "matic20",
            "paymentMethodType": "AED-BANK-TRANFER",
            "depositAddress": "0xca8fa8f0b631ecdb18cda619c4fc9d197c8affcb",
            "status": "2",
            "transactionHash": "0x9b34a0e4897cd834847d8bbb8814eba72149f914785c406684d4f887ac"
        },
}

{
    "status": 1,
    "code": 200,
    "data": [
        {
            "transactionId": "635",
            "createdAt": "2023-12-08T00:31:45.000Z",
            "updatedAt": "2023-12-08T00:31:44.000Z",
            "fromAmount": "1741",
            "toAmount": "18.32",
            "fromCurrency": "AED",
            "toCurrency": "usdc",
            "chain": "matic20",
            "paymentMethodType": "AED-BANK-TRANFER",
            "depositAddress": "0x2EAf174Bf1CD624eD63e3C8c74Dd66B66e5cb273",
            "status": "2",
            "transactionHash": "0x9b34a0e4897cd834847d8bbb8814eba72149f914785c406684d4f887ac"
        },
        {
            "transactionId": "634",
            "createdAt": "2023-12-07T22:19:28.000Z",
            "updatedAt": "2023-12-07T22:19:27.000Z",
            "fromAmount": "173435",
            "toAmount": "9.78",
            "fromCurrency": "AED",
            "toCurrency": "usdc",
            "chain": "matic20",
            "paymentMethodType": "AED-BANK-TRANFER",
            "depositAddress": "0x2EAf174Bf1CD624eD63e3C8c74Dd66B66e5cb273",
            "status": "2",
            "transactionHash": "0x9b34a0e4897cd834847d8bbb8814eba72149f914785c406684d4f887ac"
        },
        {
            "transactionId": "633",
            "createdAt": "2023-12-07T21:59:27.000Z",
            "updatedAt": "2023-12-07T21:59:27.000Z",
            "fromAmount": "1112",
            "toAmount": "60.92",
            "fromCurrency": "AED",
            "toCurrency": "usdc",
            "chain": "matic20",
            "paymentMethodType": "AED-BANK-TRANFER",
            "depositAddress": "0x57414adbBbc4BBA36f1dE26b2dc1648b28ae7799",
            "status": "1",
            "transactionHash": "0x9b34a0e4897cd834847d8bbb8814eba72149f914785c406684d4f887ac"
        },
        {
            "transactionId": "632",
            "createdAt": "2023-12-07T21:02:13.000Z",
            "updatedAt": "2023-12-07T21:02:13.000Z",
            "fromAmount": "1065",
            "toAmount": "10.82",
            "fromCurrency": "AED",
            "toCurrency": "usdc",
            "chain": "matic20",
            "paymentMethodType": "AED-BANK-TRANFER",
            "depositAddress": "0xca8fa8f0b631ecdb18cda619c4fc9d197c8affcb",
            "status": "2",
            "transactionHash": "0x9b34a0e4897cd834847d8bbb8814eba72149f914785c406684d4f887ac"
        },
}

Last updated