Fetches all Wdr records
Returns wireless detail records (WDRs) matching the provided criteria, such as date range, SIM card, IMSI, or phone number, with pagination and sorting.
Query parameters
Start date
End date
WDR uuid
Filter results by identifier.
Mobile country code
Filter results by mcc.
Mobile network code
Filter results by mnc.
International mobile subscriber identity
Filter results by imsi.
Sim group name
Filter results by sim group name.
Sim group unique identifier
Filter results by sim group id.
Sim card unique identifier
Filter results by sim card id.
Phone number
Filter results by phone number.
Field used to order the data. If no field is specified, default value is 'created_at'
Field and direction to sort the results by.
[ "created_at" ]
Consolidated page parameter (deepObject style). Originally: page[number], page[size]
Response
Successful
Example response
{
"data": [
{
"cost": {
"amount": "0.1",
"currency": "USD"
},
"created_at": "2020-07-01T00:00:00-06:00",
"downlink_data": {
"amount": 1
},
"duration_seconds": 1,
"id": "3ca7bd3d-7d82-4e07-9df4-009123068320",
"imsi": "123",
"mcc": "204",
"mnc": "01",
"phone_number": "+12345678910",
"rate": {
"amount": "0.1",
"currency": "USD"
},
"record_type": "wdr",
"sim_card_id": "877f80a6-e5b2-4687-9a04-88076265720f",
"sim_group_id": "f05a189f-7c46-4531-ac56-1460dc465a42",
"sim_group_name": "sim name",
"uplink_data": {
"amount": 1
}
}
],
"meta": {
"page_number": 2,
"page_size": 25,
"total_pages": 3,
"total_results": 55
}
}