Retrieve User Transactions
DevelopingPOST
https://api-demo.hybridmlmsoftware.com/rest/apiThe Get Transactions API enables you to retrieve a list of transactions associated with a user's wallet. This endpoint provides information about transactions such as deposits, withdrawals, transfers, and other activities.
Request
Header Params
Accept
string
required
Example:
application/json
Authorization
string
required
Example:
Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJhdWQiOiIxNCIsImp0aSI6IjBiZTg1ZDk3OTQyODhhMDE1YjE1NmM4MzU0NWJhMzBmODlmNDJhYWYyODVmNmJhYTljNTQ1ZGQxMTY3ZDBkZTU1MzdjYjhiYjRjNmQwODEzIiwiaWF0IjoxNzE2MzU5MDIxLjk1MTMzNTkwNjk4MjQyMTg3NSwibmJmIjoxNzE2MzU5MDIxLjk1MTMzODA1Mjc0OTYzMzc4OTA2MjUsImV4cCI6MTc0Nzg5NTAyMS45NDUyODg4OTY1NjA2Njg5NDUzMTI1LCJzdWIiOiIzIiwic2NvcGVzIjpbIioiXX0.BZgZ-FSc46BkkKMRiKTRoR_Q34zjngW5ubfpLPqrGUqWW-tiObWP8ZGa5JK62FtqWtZ8gVRufknW2tRnfuo5yf4XRyrf8I7p6EG9fdeT0JporThnuMgGszPZZeDKKjbgOtj0hJX8AM39Ezfu-o-tY7XG4uG8LhYxsh1PlLOxDVawwoS_7tIvCfhBAbh59OeK3c_rikHuuunO_DIqCYl3LFs0si-ooZOh15xGjERCeoWxhDmLrlZkRaMywdR9gCWCho38bGuRJdm954xHzkK68ZBMB6w-xoHvsmCcQ8keQtRP4XyJNmKaBTuErOsP_GB0wL9jiCm4NKPLeJLC-O4disbcnGXR1A37Jmknp2seeUOFvllxUp27W_9xBq3GR_QprrHPdyBmsbmah1TdSnvc1fbTpDu5mvk_GewhRATLLBDisCyJ7rlMO9uTOqMzXC1VuXPLuC-kOEeAzRi_C8tgCHde0t1D--uZr_vFuD4CpfbSHGKJ7AmKjKmlW4fb7j_7jKCFTG5MpPSb6syylKAKnCtAXiJGyuKITtMSzET8krBws3uSIzd4m6UoLO6VOXizOlr6CyIXtXCuJ33jxGA6O_z34BKxvZ_Asu5MN7nPH_7diC-W8d9Ckv6Z377ibx5k0IZgutlJFnBhh31Sw40T474-tBik9k_-MxRATrFiOqk
Body Params multipart/form-data
purpose
string
required
Example:
getTransactions
params[filters][wallet]
integer
required
Example:
50
params[filters][operation]
integer
optional
you will get operations from Retrieve Transaction Operations Api from that you choose operation_id you want.
params[filters][transactionId]
integer
optional
you will get transaction details from Retrieve User Transactions Api from that you choose transaction_id you want.
params[filters][fromDate]
string
optional
params[filters][toDate]
string
optional
params[filters][type]
string
optional
income/expense
Example:
income
params[filters][sortBy]
string
optional
Example:
created_at
params[filters][orderBy]
string
optional
asc/desc
Example:
asc
params[filters][offset]
integer
required
Example:
0
params[filters][limit]
integer
required
Example:
100
Request samples
Responses
Success(200)
Parameter Error(422)
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
object {0}
Example
{
"status": true,
"data": [
{
"transaction_id": 22,
"date": "23 APR 2024",
"context": "PAYOUT",
"amount": "$10.00",
"type": "EXPENSE"
},
{
"transaction_id": 17,
"date": "03 APR 2024",
"context": "MANUALPAYOUTRELEASE",
"amount": "$10.00",
"type": "EXPENSE"
},
{
"transaction_id": 16,
"date": "03 APR 2024",
"context": "MANUALPAYOUTRELEASE",
"amount": "$10.00",
"type": "EXPENSE"
},
{
"transaction_id": 15,
"date": "03 APR 2024",
"context": "MANUALPAYOUTRELEASE",
"amount": "$10.00",
"type": "EXPENSE"
},
{
"transaction_id": 14,
"date": "02 APR 2024",
"context": "MANUALPAYOUTRELEASE",
"amount": "$6.60",
"type": "EXPENSE"
},
{
"transaction_id": 9,
"date": "29 MAR 2024",
"context": "MANUALPAYOUTRELEASE",
"amount": "$10.00",
"type": "EXPENSE"
},
{
"transaction_id": 8,
"date": "28 MAR 2024",
"context": "PAYOUT",
"amount": "$31.00",
"type": "EXPENSE"
},
{
"transaction_id": 7,
"date": "28 MAR 2024",
"context": "MANUALPAYOUTRELEASE",
"amount": "$10.00",
"type": "EXPENSE"
},
{
"transaction_id": 6,
"date": "28 MAR 2024",
"context": "PAYOUT",
"amount": "$18.00",
"type": "EXPENSE"
},
{
"transaction_id": 4,
"date": "28 MAR 2024",
"context": "MANUALPAYOUTRELEASE",
"amount": "$20.00",
"type": "EXPENSE"
},
{
"transaction_id": 3,
"date": "28 MAR 2024",
"context": "FUND TRANSFER",
"amount": "$500.00",
"type": "INCOME"
}
],
"message": {
"success": "true"
}
}
Last modified: 7 months ago