Telnyx · Capability

Telnyx API — Speech to Text Batch Reports

Telnyx API — Speech to Text Batch Reports. 4 operations. Lead operation: Get all Speech to Text batch report requests. Self-contained Naftiko capability covering one Telnyx business surface.

Run with Naftiko TelnyxSpeech to Text Batch Reports

What You Can Do

GET
Getsttrequests — Get all Speech to Text batch report requests
/v1/legacy/reporting/batch-detail-records/speech-to-text
POST
Submitsttrequest — Create a new Speech to Text batch report request
/v1/legacy/reporting/batch-detail-records/speech-to-text
DELETE
Deletesttrequest — Delete a Speech to Text batch report request
/v1/legacy/reporting/batch-detail-records/speech-to-text/{id}
GET
Getsttrequest — Get a specific Speech to Text batch report request
/v1/legacy/reporting/batch-detail-records/speech-to-text/{id}

MCP Tools

get-all-speech-text-batch

Get all Speech to Text batch report requests

read-only idempotent
create-new-speech-text-batch

Create a new Speech to Text batch report request

delete-speech-text-batch-report

Delete a Speech to Text batch report request

idempotent
get-specific-speech-text-batch

Get a specific Speech to Text batch report request

read-only idempotent

Capability Spec

telnyx-speech-to-text-batch-reports.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Telnyx API — Speech to Text Batch Reports
  description: 'Telnyx API — Speech to Text Batch Reports. 4 operations. Lead operation: Get all Speech to Text batch report
    requests. Self-contained Naftiko capability covering one Telnyx business surface.'
  tags:
  - Telnyx
  - Speech to Text Batch Reports
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    TELNYX_API_KEY: TELNYX_API_KEY
capability:
  consumes:
  - type: http
    namespace: telnyx-speech-to-text-batch-reports
    baseUri: https://api.telnyx.com/v2
    description: Telnyx API — Speech to Text Batch Reports business capability. Self-contained, no shared references.
    resources:
    - name: legacy-reporting-batch_detail_records-speech_to_text
      path: /legacy/reporting/batch_detail_records/speech_to_text
      operations:
      - name: getsttrequests
        method: GET
        description: Get all Speech to Text batch report requests
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: submitsttrequest
        method: POST
        description: Create a new Speech to Text batch report request
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: legacy-reporting-batch_detail_records-speech_to_text-id
      path: /legacy/reporting/batch_detail_records/speech_to_text/{id}
      operations:
      - name: deletesttrequest
        method: DELETE
        description: Delete a Speech to Text batch report request
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          required: true
      - name: getsttrequest
        method: GET
        description: Get a specific Speech to Text batch report request
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          required: true
    authentication:
      type: bearer
      token: '{{env.TELNYX_API_KEY}}'
  exposes:
  - type: rest
    namespace: telnyx-speech-to-text-batch-reports-rest
    port: 8080
    description: REST adapter for Telnyx API — Speech to Text Batch Reports. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/legacy/reporting/batch-detail-records/speech-to-text
      name: legacy-reporting-batch-detail-records-speech-to-text
      description: REST surface for legacy-reporting-batch_detail_records-speech_to_text.
      operations:
      - method: GET
        name: getsttrequests
        description: Get all Speech to Text batch report requests
        call: telnyx-speech-to-text-batch-reports.getsttrequests
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: submitsttrequest
        description: Create a new Speech to Text batch report request
        call: telnyx-speech-to-text-batch-reports.submitsttrequest
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/legacy/reporting/batch-detail-records/speech-to-text/{id}
      name: legacy-reporting-batch-detail-records-speech-to-text-id
      description: REST surface for legacy-reporting-batch_detail_records-speech_to_text-id.
      operations:
      - method: DELETE
        name: deletesttrequest
        description: Delete a Speech to Text batch report request
        call: telnyx-speech-to-text-batch-reports.deletesttrequest
        with:
          id: rest.id
        outputParameters:
        - type: object
          mapping: $.
      - method: GET
        name: getsttrequest
        description: Get a specific Speech to Text batch report request
        call: telnyx-speech-to-text-batch-reports.getsttrequest
        with:
          id: rest.id
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: telnyx-speech-to-text-batch-reports-mcp
    port: 9090
    transport: http
    description: MCP adapter for Telnyx API — Speech to Text Batch Reports. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: get-all-speech-text-batch
      description: Get all Speech to Text batch report requests
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: telnyx-speech-to-text-batch-reports.getsttrequests
      outputParameters:
      - type: object
        mapping: $.
    - name: create-new-speech-text-batch
      description: Create a new Speech to Text batch report request
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: telnyx-speech-to-text-batch-reports.submitsttrequest
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: delete-speech-text-batch-report
      description: Delete a Speech to Text batch report request
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: telnyx-speech-to-text-batch-reports.deletesttrequest
      with:
        id: tools.id
      outputParameters:
      - type: object
        mapping: $.
    - name: get-specific-speech-text-batch
      description: Get a specific Speech to Text batch report request
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: telnyx-speech-to-text-batch-reports.getsttrequest
      with:
        id: tools.id
      outputParameters:
      - type: object
        mapping: $.