Skip to main content
GET
/
public
/
user
/
mobile_ledger
/
search
Search Mobile Ledger
curl --request GET \
  --url https://api.byteful.com/1.0/public/user/mobile_ledger/search \
  --header 'X-API-Private-Key: <api-key>' \
  --header 'X-API-Public-Key: <api-key>'
{
  "data": [
    {
      "customer_id": 1955,
      "mobile_ledger_bytes": 128290101,
      "mobile_ledger_creation_datetime": "2023-04-01 12:00:00",
      "mobile_ledger_id": "123e4567-e89b-12d3-a456-426614174000",
      "mobile_ledger_last_update_datetime": "2023-04-02 12:00:00",
      "mobile_ledger_period_date": "2023-10-01",
      "mobile_ledger_reason": "top_up",
      "mobile_ledger_requests": 1244,
      "service_adjustment_id": 10,
      "service_id": "API-1234-5678"
    }
  ],
  "item_count": 1,
  "message": "Mobile Ledger search successful.",
  "page": 1,
  "per_page": 10,
  "total_count": 1
}

Documentation Index

Fetch the complete documentation index at: https://documentation.byteful.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-API-Private-Key
string
header
required

Private API key for user-level authentication.

X-API-Public-Key
string
header
required

Public API key for user-level authentication.

Query Parameters

mobile_ledger_id
string

Unique identifier of the Mobile Ledger entry.

service_id
string

Service identifier associated with the ledger entry.

service_adjustment_id
integer

Adjustment identifier associated with the ledger entry.

mobile_ledger_reason
string

Reason for the ledger entry.

mobile_ledger_requests
integer

Number of requests recorded in the ledger entry.

mobile_ledger_bytes
integer

Data usage in bytes recorded in the ledger entry.

mobile_ledger_period_date
string

The date of the ledger entry.

mobile_ledger_creation_datetime
string

Creation datetime of the ledger entry.

mobile_ledger_last_update_datetime
string

Last update datetime of the ledger entry.

per_page
integer

Number of items per page for pagination

page
integer

Page number for pagination

sort_by
string

Key for sorting or random.

Response

200 - application/json

Successful Mobile Ledger search

Mobile Ledger search was successful.

data
object[]

Array of Mobile Ledger items matching the search criteria up to the limit of per_page paramater.

item_count
integer

Total number of Mobile Ledger items returned in the data field.

message
string

Status message for the search.

page
integer

Current page number of the search results returned.

per_page
integer

Number of Mobile Ledger items returned per page.

total_count
integer

Total of Mobile Ledger items that match the search filter.