Query the refundable amount
Query the estimated refundable amount for orders paid on the EIOTCLUB platform.
Rules:1.
Full refund within 24 hours after purchase.
2.
For limited - quantity packages: Refund amount = min(Unused days/Total available days, Unused data/Total data) * Total amount paid by the user.
3.
For time - limited packages: Refund amount = (Unused days/Total available days) * Total amount paid by the user.
4.
For foreign currencies like Japanese Yen, the minimum unit is cents, rounded down. For Japanese Yen, the minimum unit is yen, also rounded down.
Request
Body Params application/json
{
"operator": 5,
"appkey": "{{APPKEY}}",
"timestamp": {{TIMESTAMP}},
"nonce": 90174,
"sign": "{{SIGN}}",
"iccid": "8988308650100524999",
"orderId": "810000200804035522"
}
Request Code Samples
curl --location 'https://oapi.eiotclub.com/api/v3/package/queryRefundAmount' \
--header 'Content-Type: application/json' \
--data '{
"operator": 5,
"appkey": "",
"timestamp": ,
"nonce": 90174,
"sign": "",
"iccid": "8988308650100524999",
"orderId": "810000200804035522"
}'
Responses
application/json
{
"code": "200",
"message": "Operation successful",
"data": {
"amount": "10.50",
"currency": "USD",
"amount_int": 1050
}
}
Modified at 2025-08-18 03:44:04