Transaction History

Get Transaction History

GET /transactions

<Description of the endpoint>

Headers

Name
Value

Content-Type

application/json

Authorization

Bearer <apiKey>

Response

{
  "status": 200,
  "message": "Transactions fetched successfully",
  "data": "<encrypted data>"
}

Decrypted Response:

{
  "status": 200,
  "message": "Transactions fetched successfully",
  "data": [
    {
      "id": "1da2ecfc-5623-4470-a160-b5438515c39a",
      "from": "example@gmail.com",
      "receiver": "011:1234567890",
      "initiatorId": "67979970-c593-4b32-9161-12402fc7f9a3",
      "requires_multi_sig": false,
      "total_sigs_required": 1,
      "amount": "1000",
      "description": "cNGN Redemption",
      "createdAt": "2024-10-21T09:17:39.442Z",
      "updatedAt": "2024-10-21T09:17:39.442Z",
      "trx_ref": "3f9089af-2e0b-4e59-a126-7395dc494d53",
      "trx_type": "fiat_redeem",
      "network": "xbn",
      "asset_type": "wrapped",
      "asset_symbol": "NGN",
      "base_trx_hash": null,
      "extl_trx_hash": null,
      "explorer_link": null,
      "status": "completed",
      "va_deposit_session_id": null,
      "va_payment_ref": null,
      "mpc_trx_ref": null,
      "businessId": "fac93c57-55af-4d73-b3b6-7a135e3a4f29"
    },
    {
      "id": "f8791ae3-c37f-4d02-b98a-364c1d594848",
      "from": "example@gmail.com",
      "receiver": "011:1234567890",
      "initiatorId": "67979970-c593-4b32-9161-12402fc7f9a3",
      "requires_multi_sig": false,
      "total_sigs_required": 1,
      "amount": "1000",
      "description": "cNGN Redemption",
      "createdAt": "2024-10-21T09:18:48.349Z",
      "updatedAt": "2024-10-21T09:18:48.349Z",
      "trx_ref": "d0dfe0d1-3eb4-49ea-803c-52da9d03dd9c",
      "trx_type": "fiat_redeem",
      "network": "xbn",
      "asset_type": "wrapped",
      "asset_symbol": "NGN",
      "base_trx_hash": null,
      "extl_trx_hash": null,
      "explorer_link": null,
      "status": "completed",
      "va_deposit_session_id": null,
      "va_payment_ref": null,
      "mpc_trx_ref": null,
      "businessId": "fac93c57-55af-4d73-b3b6-7a135e3a4f29"
    }
  ]
}

Last updated