Transactions
Get transaction by ID
Retrieve a single transaction by its UUID
get/api/v1/bila/transactions/{id}
Path parameters
idstring required
Example:68f11209-451f-4a15-bfcd-d916eb8b09f4
Transaction UUID
Response
Transaction retrieved successfully
Example response
{
"status": true,
"message": "Operation completed successfully",
"data": {
"id": "txn-001",
"type": "credit",
"amount": 1000,
"currency": "ZMW",
"status": "successful",
"description": "Mobile money collection",
"reference": "order-12345",
"accountId": "acc-001",
"balanceBefore": 5000,
"balanceAfter": 6000,
"createdAt": "2024-01-15T10:30:00Z"
}
}