Overview
Returns paginated list of all internet top-up transactions with optional date filtering.
Query Parameters
Items per page (minimum: 1, maximum: 100)
Examples
curl "https://api.oneclickdz.com/v3/internet/list?page=1&pageSize=20" \
-H "X-Access-Token: YOUR_API_KEY"
Response Example
{
"success": true,
"data": {
"topups": [
{
"_id": "6901616fe9e88196b4eb64b2",
"ref": "internet-order-001",
"status": "FULFILLED",
"type": "ADSL",
"number": "036362608",
"topup_amount": 1000,
"card_code": "123456789012",
"num_trans": "AT-2025-12345",
"created_at": "2025-10-29T01:00:00.000Z"
}
]
},
"meta": {
"pagination": {
"currentPage": 1,
"totalPages": 5,
"totalItems": 87,
"hasNextPage": true
}
}
}