v3

latestOpenAPI 3.0.0raw.githubusercontent.com2026-06-10283986.5 KB
Transfers

Get transfer by ID

Retrieve a single transfer by its UUID

get/api/v1/bila/transfers/{id}

Path parameters

idstring required
Example:68f11209-451f-4a15-bfcd-d916eb8b09f4

Transfer UUID

Response

Transfer retrieved successfully

statusboolean required

Request success status

messagestring required

Response message

Example response

{
  "status": true,
  "message": "Operation completed successfully",
  "data": {
    "id": "txn-001",
    "reference": "payout-12345",
    "type": "bank-account",
    "status": "successful",
    "amount": 1000,
    "currency": "ZMW",
    "narration": "Salary payment",
    "recipient": {
      "accountNumber": "1234567890",
      "accountName": "JOHN DOE",
      "bankName": "Zambia National Commercial Bank",
      "phone": "0977123456",
      "operator": "airtel"
    },
    "createdAt": "2024-01-15T10:30:00Z",
    "completedAt": "2024-01-15T10:31:00Z"
  }
}