List wallet transactions
curl --request GET \
--url https://{baasHost}/api/v1/wms/wallets/{walletId}/transactions \
--header 'Authorization: Bearer <token>'import requests
url = "https://{baasHost}/api/v1/wms/wallets/{walletId}/transactions"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://{baasHost}/api/v1/wms/wallets/{walletId}/transactions', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://{baasHost}/api/v1/wms/wallets/{walletId}/transactions",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://{baasHost}/api/v1/wms/wallets/{walletId}/transactions"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://{baasHost}/api/v1/wms/wallets/{walletId}/transactions")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://{baasHost}/api/v1/wms/wallets/{walletId}/transactions")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"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
}
]
}Wallets
List wallet transactions
Returns two arrays: items — the x-bridge transaction view; build against this. Avoid fineractItems (the raw core-engine transactions) for now — lean on items.
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>'import requests
url = "https://{baasHost}/api/v1/wms/wallets/{walletId}/transactions"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://{baasHost}/api/v1/wms/wallets/{walletId}/transactions', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://{baasHost}/api/v1/wms/wallets/{walletId}/transactions",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://{baasHost}/api/v1/wms/wallets/{walletId}/transactions"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://{baasHost}/api/v1/wms/wallets/{walletId}/transactions")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://{baasHost}/api/v1/wms/wallets/{walletId}/transactions")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"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
Bearer token from POST /generate-token. Expires ~1h; on 401, re-generate and retry once.