Skip to main content

Retrieve Telco Data usage report status

GET 
/reporting/telco_data_usage_reports/:id

Retrieve the status of a given Telco Data usage report.

Request

Path Parameters

    id stringrequired

    ID of the Telco Data usage report

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/:id' \
-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"
}
}