Transactions

Retrieving transactions

Two call are available for transactions, 1 retrieving all, and 2 retrieving a single transaction.

1876

The numbers below correspond with the numbers in the display made to retrieve these items for your frontend

GET /v1/wallet-transactions


//Sample Response
..."data": [
    {
      "id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
      "type": "cryptoDeposit",
      "source": {
        "walletId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
        "address": "0x555d6b6936984eF0Ce28bd8323C3c1A880510e49"
      },
      "destination": {
        "walletId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
        "address": "0x555d6b6936984eF0Ce28bd8323C3c1A880510e49"
      },
      "network": "mainnet",
      "assetType": "ether",
      "token": {
        "id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
        "blockchainTokenId": {
          "isPowerOfTwo": true,
          "isZero": true,
          "isOne": true,
          "isEven": true,
          "sign": 0,...
GET /v1/wallet-transactions/{transactionId}

//Sample Response
{
  "id": "3fa85f64-5717-4562-b3fc-2c963f66afa3",
  "type": "cryptoDeposit|cryptoWithdrawal|nftDeposit|nftWithdrawal"
  "source": {
    "walletId": "guid", // optional, exists in cryptoWithdrawal and nftWithdrawal
    "address": "string"
  },
  "destination": {
    "walletId": "guid", // optional, exists in cryptoDeposit and nftDeposit
    "address": "string"
  },
  "network": "Ropsten",
  "assetType": "Ether",
  "token": {   
      "id": "304a09c2-f5a0-4ab9-8c40-29fb9531d80c",
      "organizationId": "08089cce-cdfb-4be4-9f82-45baba765431",
      "contractAddress": "0x1ed60fedff775d500dde21a974cd4e92e0047cc8",
      "blockchainTokenId": "3847915601884685667760590757091",...