Skip to main content
GET
/
ledger_billing_group_reports
/
{id}
JavaScript
import Telnyx from 'telnyx';

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

const ledgerBillingGroupReport = await client.ledgerBillingGroupReports.retrieve(
  'f5586561-8ff0-4291-a0ac-84fe544797bd',
);

console.log(ledgerBillingGroupReport.data);
{
  "data": {
    "record_type": "ledger_billing_group_report",
    "id": "f5586561-8ff0-4291-a0ac-84fe544797bd",
    "organization_id": "f5586561-8ff0-4291-a0ac-84fe544797bd",
    "report_url": "https://example.com",
    "created_at": "2019-10-15T10:07:15.527Z",
    "updated_at": "2019-10-15T10:07:15.527Z"
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string<uuid>
required

The id of the ledger billing group report

Response

Expected ledger billing group report response to a valid request

data
object
Example:
{
"record_type": "ledger_billing_group_report",
"id": "f5586561-8ff0-4291-a0ac-84fe544797bd",
"organization_id": "f5586561-8ff0-4291-a0ac-84fe544797bd",
"report_url": "https://example.com",
"created_at": "2019-10-15T10:07:15.527Z",
"updated_at": "2019-10-15T10:07:15.527Z"
}