Retrieves list of all transactions that belong to a crypto wallet. You can use the walletId parameter to list the transactions and query parameters to filter the transactions. Filters available are:
- startDate
- endDate
- minAmount
- maxAmount
- cardId
- txnType
- transferType
- subType
Example: GET /v1/account/:id/transaction?startDate={{startDate}}&endDate={{endDate}}&minAmount={{minAmount}}&maxAmount={{maxAmount}}&offset={{offset}}&limit={{limit}}
ENDPOINT
- GET /v1/crypto/:id/transaction/
RESPONSE
- {
- "total": 1,
- "data": [
- {
- "id": "txn-46ce474f-2b56-4111-8a89-f0ffb4d46bb1",
- "txnType": "credit",
- "title": "Crypto Buy Transfer",
- "amount": "71.42857143",
- "transferType": "buy",
- "subType": "originated",
- "description": "DOGE buy",
- "walletId": "cpw-71f88cce-486f-4768-b2e8-ef560848c135",
- "businessId": "",
- "programId": "prg-ae446ad4-4ea0-4506-8ee9-292cff66ce12",
- "personId": "per-c304000e-8dbb-4c0b-a0e0-26886549eefb",
- "balance": "71.42857143",
- "status": "settled",
- "card": null,
- "send": null,
- "buy": {
- "quoteId": "qtn-c2b76f28-a11b-4765-be1a-5408eb93b366",
- "quotedPrice": "0.14",
- "quotedCurrency": "USD",
- "accountId": "acc-bbdedc5a-7c46-4b3f-84d5-7439f2e51b15"
- },
- "sell": null,
- "receive": null,
- "createdAt": "2022-04-01T05:46:48Z",
- "txnDate": "2022-04-01T05:46:48Z",
- "currency": "DOGE",
- "familyId": ""
- }
- ]
- }