Skip to main content
GET
/
v1
/
wms
/
wallets
/
{walletId}
/
transactions
List wallet transactions
curl --request GET \
  --url https://{baasHost}/api/v1/wms/wallets/{walletId}/transactions \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "id": "3a5e87bb-f073-43c5-a77c-b87e394305fe",
      "walletId": "f029d5af-2dae-4c27-ae86-993e362949ab",
      "type": "topup",
      "status": "completed",
      "amount": "1000.00",
      "currency": "TZS",
      "reference": "COL-738609d8-db35-4329-83e7-360cdd15d83c",
      "externalId": "3",
      "description": "Mobile money deposit",
      "createdAt": "2026-05-21T11:29:52.656Z"
    }
  ],
  "fineractItems": [
    {
      "id": 3,
      "entryType": "CREDIT",
      "amount": 1000,
      "runningBalance": 1000,
      "transactionType": {
        "value": "Deposit",
        "deposit": true
      },
      "currency": {
        "code": "TZS"
      },
      "date": [
        2026,
        5,
        21
      ],
      "reversed": false
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer token from POST /generate-token. Expires ~1h; on 401, re-generate and retry once.

Path Parameters

walletId
string<uuid>
required

Response

200 - application/json

Wallet transactions

items
object[]
fineractItems
object[]
deprecated

Raw core-engine data — build against items; avoid fineractItems for now.