Skip to main content

List all Telco Data usage reports

GET 
/reporting/telco_data_usage_reports

Returns a list of your Telco Data usage reports.

Request

Query Parameters

    page integer

    Default value: 1

    Index of the page to query

    per_page integer

    Possible values: <= 1000

    Default value: 100

    Number of reports per page

Responses

200: Successful response

400: Bad request

401: Unauthorized

404: Resource not found

422: Invalid parameters supplied in request

Request samples


curl -L 'https://api.telnyx.com/reporting/telco_data_usage_reports' \
-H 'Accept: application/json'

Response samples


[
{
"data": [
{
"id": "string",
"start_date": "string",
"end_date": "string",
"aggregation_type": "string",
"status": "string",
"report_url": "string",
"result": [
{
"user_id": "string",
"aggregations": [
{
"type": "string",
"total_dips": 0,
"total_cost": 0,
"currency": "string"
}
]
}
],
"created_at": "string",
"updated_at": "string"
}
]
}
]