WDR Detail Reports API

WDR Detail Reports API

WDR Get

Fetch all Wdr records

SecuritybearerAuth
Request
query Parameters
start_date
string

Start date

Example: start_date=2021-05-01T00:00:00Z
end_date
string

End date

Example: end_date=2021-06-01T00:00:00Z
id
string

WDR uuid

Example: id=e093fbe0-5bde-11eb-ae93-0242ac130002
mcc
string

Mobile country code

Example: mcc=204
mnc
string

Mobile network code

Example: mnc=01
imsi
string

International mobile subscriber identity

Example: imsi=123456
sim_group_name
string

Sim group name

Example: sim_group_name=sim name
sim_group_id
string

Sim group unique identifier

Example: sim_group_id=f05a189f-7c46-4531-ac56-1460dc465a42
sim_card_id
string

Sim card unique identifier

Example: sim_card_id=877f80a6-e5b2-4687-9a04-88076265720f
phone_number
string

Phone number

Example: phone_number=+12345678910
page[number]
integer <int32>
Default: 1

Page number

page[size]
integer <int32>
Default: 20

Size of the page

sort
Array of strings
Default: "created_at"

Field used to order the data. If no field is specified, default value is 'created_at'

Example: sort=created_at
Responses
200

Successful

Response Schema: application/json
Array of objects (ExternalWdrDetailRecordDto)
object (PaginationMeta)
get/reports/wdrs
Request samples
Response samples
application/json
{
  • "data": [
    • {
      • "cost": {
        • "amount": 0.1,
        • "currency": "USD"
        },
      • "created_at": "2020-07-01T00:00:00-06:00",
      • "downlink_data": {
        • "amount": 1,
        • "unit": "B"
        },
      • "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,
        • "unit": "B"
        }
      }
    ],
  • "meta": {
    • "page_number": 2,
    • "page_size": 25,
    • "total_pages": 3,
    • "total_results": 55
    }
}