Introduction
This page contains guide to get transaction details on Inlomax.
Get Transaction Details
Send a post request to the below endpoint, You can use the PHP integration code below....
curl --request POST 'https://inlomax.com/api/transaction' \
--header 'Authorization: Token YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--data-raw '{
"reference": "INL|NQJK56QVZVHHX34RJ5XTMDXLG"
}'
Sample Response
{
"status": "success",
"message": "Dear Customer, You have successfully gifted 0903837261 with 1.0GB of Data. Thank you.",
"data": {
"type": "data",
"reference": "INL|NQJK56QVZVHHX34RJ5XTMDXLG",
"amount": 1000,
"date": "28-08-2024 08:40:49 AM",
"status": "success"
}
}