get https://{{BASE_URL}}/api/v1/wallet/user/transaction_history
This endpoint is used to fetch the history of all sell transactions for a given user.
Response
This endpoint is used to fetch the history of all sell transactions for a given user.
xxxxxxxxxx
curl --request GET \
--url https:///%7BBASE_URL%7D/api/v1/wallet/user/transaction_history \
--header 'accept: application/json'
xxxxxxxxxx
18{
"data": {
"bank_transaction_id": "227617569022",
"created_at": "2022-10-03T07:51:15.000Z",
"crypto_amount": 1.14,
"crypto_symbol": "USDT",
"exchange_rate": 82.56976,
"failure_code": null,
"failure_desc": null,
"fiat_amount": 100,
"fiat_symbol": "INR",
"id": "a892dc4a-aecb-4a22-9de4-2990b4179b77",
"source_id": "65d246fc-6a5b-43d7-89bf-944e95ff2279",
"status": "COMPLETED",
"transaction_type": "SELL"
},
"success": true
}