Get Wallet Transactions
GET /wallet/transactions
GET /wallet/transactionsRequired Permission
read:UserWalletDailyTransactionsExample Request
curl --location 'https://<hostname>/wallet/transactions' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY'Response (HTTP 200)
{
"success": true,
"transactions": [
{
"id": "txn_001",
"type": "credit",
"amount": 50.00,
"currency": "USD",
"created_on": "2025-02-01T12:00:00.000Z"
},
{
"id": "txn_002",
"type": "debit",
"amount": 10.00,
"currency": "USD",
"created_on": "2025-02-02T08:45:00.000Z"
}
]
}Last updated