Skip to main content

Check Mobile Money & VISA Transactions

This endpoint retrieves Mobile Money and VISA transactions for a specific business account.

Functionality

  • Fetches transactions for the specified account number.
  • Includes both Mobile Money and VISA transactions.
  • Limited to the last 30 days.
  • A maximum of 1,000 transactions is returned

HTTP Request

GET
https://payments.relworx.com/api/payment-requests/transactions?account_no=YOUR_ACCOUNT_NUMBER
info

Make sure you replace YOUR_ACCOUNT_NUMBER with your actual Account Number

ParameterTypeRequiredDescription
account_nostringRequiredBusiness account number. This is generated for you when you create a business account.

Sample response

 {
"success": true,
"transactions": [
{
"customer_reference": "52750bth0ferdwewe374566sd80",
"provider": "AIRTEL_UGANDA",
"msisdn": "+256705485397",
"transaction_type": "payout",
"currency": "UGX",
"amount": 2000.0,
"status": "success",
"created_at": "2025-07-01T14:51:27+03:00"
},
{
"customer_reference": "52750bth0ferdwewe374566sd80",
"provider": "Visa Mastercard",
"msisdn": "",
"transaction_type": "collection",
"currency": "UGX",
"amount": 2000.0,
"status": "success",
"created_at": "2025-07-01T14:51:27+03:00"
}
]
}