Telnyx · Capability

Telnyx API — Reporting

Telnyx API — Reporting. 4 operations. Lead operation: Get all Wireless Detail Records (WDRs) Reports. Self-contained Naftiko capability covering one Telnyx business surface.

Run with Naftiko TelnyxReporting

What You Can Do

GET
Getwdrreports — Get all Wireless Detail Records (WDRs) Reports
/v1/wireless/detail-records-reports
POST
Createwdrreport — Create a Wireless Detail Records (WDRs) Report
/v1/wireless/detail-records-reports
DELETE
Deletewdrreport — Delete a Wireless Detail Record (WDR) Report
/v1/wireless/detail-records-reports/{id}
GET
Getwdrreport — Get a Wireless Detail Record (WDR) Report
/v1/wireless/detail-records-reports/{id}

MCP Tools

get-all-wireless-detail-records

Get all Wireless Detail Records (WDRs) Reports

read-only idempotent
create-wireless-detail-records-wdrs

Create a Wireless Detail Records (WDRs) Report

delete-wireless-detail-record-wdr

Delete a Wireless Detail Record (WDR) Report

idempotent
get-wireless-detail-record-wdr

Get a Wireless Detail Record (WDR) Report

read-only idempotent

Capability Spec

telnyx-reporting.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Telnyx API — Reporting
  description: 'Telnyx API — Reporting. 4 operations. Lead operation: Get all Wireless Detail Records (WDRs) Reports. Self-contained
    Naftiko capability covering one Telnyx business surface.'
  tags:
  - Telnyx
  - Reporting
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    TELNYX_API_KEY: TELNYX_API_KEY
capability:
  consumes:
  - type: http
    namespace: telnyx-reporting
    baseUri: https://api.telnyx.com/v2
    description: Telnyx API — Reporting business capability. Self-contained, no shared references.
    resources:
    - name: wireless-detail_records_reports
      path: /wireless/detail_records_reports
      operations:
      - name: getwdrreports
        method: GET
        description: Get all Wireless Detail Records (WDRs) Reports
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createwdrreport
        method: POST
        description: Create a Wireless Detail Records (WDRs) Report
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: wireless-detail_records_reports-id
      path: /wireless/detail_records_reports/{id}
      operations:
      - name: deletewdrreport
        method: DELETE
        description: Delete a Wireless Detail Record (WDR) Report
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: getwdrreport
        method: GET
        description: Get a Wireless Detail Record (WDR) Report
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.TELNYX_API_KEY}}'
  exposes:
  - type: rest
    namespace: telnyx-reporting-rest
    port: 8080
    description: REST adapter for Telnyx API — Reporting. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/wireless/detail-records-reports
      name: wireless-detail-records-reports
      description: REST surface for wireless-detail_records_reports.
      operations:
      - method: GET
        name: getwdrreports
        description: Get all Wireless Detail Records (WDRs) Reports
        call: telnyx-reporting.getwdrreports
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createwdrreport
        description: Create a Wireless Detail Records (WDRs) Report
        call: telnyx-reporting.createwdrreport
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/wireless/detail-records-reports/{id}
      name: wireless-detail-records-reports-id
      description: REST surface for wireless-detail_records_reports-id.
      operations:
      - method: DELETE
        name: deletewdrreport
        description: Delete a Wireless Detail Record (WDR) Report
        call: telnyx-reporting.deletewdrreport
        outputParameters:
        - type: object
          mapping: $.
      - method: GET
        name: getwdrreport
        description: Get a Wireless Detail Record (WDR) Report
        call: telnyx-reporting.getwdrreport
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: telnyx-reporting-mcp
    port: 9090
    transport: http
    description: MCP adapter for Telnyx API — Reporting. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: get-all-wireless-detail-records
      description: Get all Wireless Detail Records (WDRs) Reports
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: telnyx-reporting.getwdrreports
      outputParameters:
      - type: object
        mapping: $.
    - name: create-wireless-detail-records-wdrs
      description: Create a Wireless Detail Records (WDRs) Report
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: telnyx-reporting.createwdrreport
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: delete-wireless-detail-record-wdr
      description: Delete a Wireless Detail Record (WDR) Report
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: telnyx-reporting.deletewdrreport
      outputParameters:
      - type: object
        mapping: $.
    - name: get-wireless-detail-record-wdr
      description: Get a Wireless Detail Record (WDR) Report
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: telnyx-reporting.getwdrreport
      outputParameters:
      - type: object
        mapping: $.