curl --location --request POST 'https://api-demo.hybridmlm.io/rest/api' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer <token>' \
--form 'purpose="getTransactions"' \
--form 'params[filters][wallet]="50"' \
--form 'params[filters][operation]=""' \
--form 'params[filters][transactionId]=""' \
--form 'params[filters][fromDate]=""' \
--form 'params[filters][toDate]=""' \
--form 'params[filters][type]="income"' \
--form 'params[filters][sortBy]="created_at"' \
--form 'params[filters][orderBy]="asc"' \
--form 'params[filters][offset]="0"' \
--form 'params[filters][limit]="100"'{
"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"
}
}