Skip to main content
GET
/
reports
/
cdr_usage_reports
/
sync
JavaScript
import Telnyx from 'telnyx';

const client = new Telnyx({
  apiKey: 'My API Key',
});

const response = await client.reports.cdrUsageReports.fetchSync({
  aggregation_type: 'NO_AGGREGATION',
  product_breakdown: 'NO_BREAKDOWN',
});

console.log(response.data);
{
  "data": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "start_time": "2018-02-02T22:25:27.521Z",
    "end_time": "2018-02-02T22:25:27.521Z",
    "connections": [
      1234567890,
      9876543210
    ],
    "aggregation_type": "NO_AGGREGATION",
    "status": "PENDING",
    "report_url": "http://portal.telnyx.com/downloads/report_name_8hvb45Gu.csv",
    "result": {},
    "created_at": "2018-02-02T22:25:27.521Z",
    "updated_at": "2018-02-02T22:25:27.521Z",
    "record_type": "cdr_usage_report",
    "product_breakdown": "NO_BREAKDOWN"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

start_date
string<date-time>
Example:

"2020-07-01T00:00:00-06:00"

end_date
string<date-time>
Example:

"2020-07-01T00:00:00-06:00"

aggregation_type
enum<string>
required
Available options:
NO_AGGREGATION,
CONNECTION,
TAG,
BILLING_GROUP
Example:

"NO_AGGREGATION"

product_breakdown
enum<string>
required
Available options:
NO_BREAKDOWN,
DID_VS_TOLL_FREE,
COUNTRY,
DID_VS_TOLL_FREE_PER_COUNTRY
Example:

"NO_BREAKDOWN"

connections
number[]
Example:
[1234567890123]

Response

Successful

data
object