Skip to main content

4.0 Get Transaction

Get details of a specific transaction.

Method: GET
Endpoint: /accounts/getTransaction/{id}

Request Body:

{
"asset": "USDT",
"currency": "UGX",
"service_code": "MOBILE_MONEY"
}

Response Example:

{
"status": 200,
"message": "success",
"data": {
"transaction_id": "tx123456789",
"reference_id": "REF987654321",
"status": "PENDING",
"amount": 400.0,
"currency": "UGX",
"asset_code": "USDT",
"provider_id": 1,
"created_at": "2024-05-16T10:30:00Z",
"updated_at": "2024-05-16T10:30:00Z",
"rate": 3712.03,
"fiat_amount": 1484812.0,
"fee": 1.75
}
}