Skip to main content

Transaction Status

Transaction Enquiry By Lipila transaction Id

Here’s how to use the Lipila API to check the status of a transaction:

  1. Make a GET request to the Lipila API with the transaction ID as the path parameter.

curl --location --request GET 'https://lipila-uat.hobbiton.app/transactions/status?transactionId=LPLTXN2403191437038442' \
--header 'Authorization: Bearer YOUR_SECRET_KEY'
--header 'Content-Type: application/json' \

Transaction Status Response

Below is a snapshot of the sample response for the transaction status response

{
"status": "Pending",
"paymentType": "AirtelMoney",
"currency": "string",
"amount": 0,
"accountNumber": "string",
"cardDetails": {
"cardNumber": "string",
"expiryMonth": 0,
"expiryYear": 0
},
"customer": {
"fullName": "string",
"phoneNumber": "string",
"email": "string"
},
"ipAddress": "string",
"message": "string",
"transactionId": "string",
"externalId": "string"
}