Telnyx · Capability

Telnyx API — Pronunciation Dictionaries

Telnyx API — Pronunciation Dictionaries. 5 operations. Lead operation: List pronunciation dictionaries. Self-contained Naftiko capability covering one Telnyx business surface.

Run with Naftiko TelnyxPronunciation Dictionaries

What You Can Do

GET
Listpronunciationdicts — List pronunciation dictionaries
/v1/pronunciation-dicts
POST
Createpronunciationdict — Create a pronunciation dictionary
/v1/pronunciation-dicts
DELETE
Deletepronunciationdict — Delete a pronunciation dictionary
/v1/pronunciation-dicts/{id}
GET
Getpronunciationdict — Get a pronunciation dictionary
/v1/pronunciation-dicts/{id}
PATCH
Updatepronunciationdict — Update a pronunciation dictionary
/v1/pronunciation-dicts/{id}

MCP Tools

list-pronunciation-dictionaries

List pronunciation dictionaries

read-only idempotent
create-pronunciation-dictionary

Create a pronunciation dictionary

delete-pronunciation-dictionary

Delete a pronunciation dictionary

idempotent
get-pronunciation-dictionary

Get a pronunciation dictionary

read-only idempotent
update-pronunciation-dictionary

Update a pronunciation dictionary

idempotent

Capability Spec

telnyx-pronunciation-dictionaries.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Telnyx API — Pronunciation Dictionaries
  description: 'Telnyx API — Pronunciation Dictionaries. 5 operations. Lead operation: List pronunciation dictionaries. Self-contained
    Naftiko capability covering one Telnyx business surface.'
  tags:
  - Telnyx
  - Pronunciation Dictionaries
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    TELNYX_API_KEY: TELNYX_API_KEY
capability:
  consumes:
  - type: http
    namespace: telnyx-pronunciation-dictionaries
    baseUri: https://api.telnyx.com/v2
    description: Telnyx API — Pronunciation Dictionaries business capability. Self-contained, no shared references.
    resources:
    - name: pronunciation_dicts
      path: /pronunciation_dicts
      operations:
      - name: listpronunciationdicts
        method: GET
        description: List pronunciation dictionaries
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: page[number]
          in: query
          type: integer
          description: Page number (1-based). Defaults to 1.
        - name: page[size]
          in: query
          type: integer
          description: Number of results per page. Defaults to 20, maximum 250.
      - name: createpronunciationdict
        method: POST
        description: Create a pronunciation dictionary
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: pronunciation_dicts-id
      path: /pronunciation_dicts/{id}
      operations:
      - name: deletepronunciationdict
        method: DELETE
        description: Delete a pronunciation dictionary
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: getpronunciationdict
        method: GET
        description: Get a pronunciation dictionary
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: updatepronunciationdict
        method: PATCH
        description: Update a pronunciation dictionary
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: bearer
      token: '{{env.TELNYX_API_KEY}}'
  exposes:
  - type: rest
    namespace: telnyx-pronunciation-dictionaries-rest
    port: 8080
    description: REST adapter for Telnyx API — Pronunciation Dictionaries. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/pronunciation-dicts
      name: pronunciation-dicts
      description: REST surface for pronunciation_dicts.
      operations:
      - method: GET
        name: listpronunciationdicts
        description: List pronunciation dictionaries
        call: telnyx-pronunciation-dictionaries.listpronunciationdicts
        with:
          page[number]: rest.page[number]
          page[size]: rest.page[size]
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createpronunciationdict
        description: Create a pronunciation dictionary
        call: telnyx-pronunciation-dictionaries.createpronunciationdict
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/pronunciation-dicts/{id}
      name: pronunciation-dicts-id
      description: REST surface for pronunciation_dicts-id.
      operations:
      - method: DELETE
        name: deletepronunciationdict
        description: Delete a pronunciation dictionary
        call: telnyx-pronunciation-dictionaries.deletepronunciationdict
        outputParameters:
        - type: object
          mapping: $.
      - method: GET
        name: getpronunciationdict
        description: Get a pronunciation dictionary
        call: telnyx-pronunciation-dictionaries.getpronunciationdict
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: updatepronunciationdict
        description: Update a pronunciation dictionary
        call: telnyx-pronunciation-dictionaries.updatepronunciationdict
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: telnyx-pronunciation-dictionaries-mcp
    port: 9090
    transport: http
    description: MCP adapter for Telnyx API — Pronunciation Dictionaries. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: list-pronunciation-dictionaries
      description: List pronunciation dictionaries
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: telnyx-pronunciation-dictionaries.listpronunciationdicts
      with:
        page[number]: tools.page[number]
        page[size]: tools.page[size]
      outputParameters:
      - type: object
        mapping: $.
    - name: create-pronunciation-dictionary
      description: Create a pronunciation dictionary
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: telnyx-pronunciation-dictionaries.createpronunciationdict
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: delete-pronunciation-dictionary
      description: Delete a pronunciation dictionary
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: telnyx-pronunciation-dictionaries.deletepronunciationdict
      outputParameters:
      - type: object
        mapping: $.
    - name: get-pronunciation-dictionary
      description: Get a pronunciation dictionary
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: telnyx-pronunciation-dictionaries.getpronunciationdict
      outputParameters:
      - type: object
        mapping: $.
    - name: update-pronunciation-dictionary
      description: Update a pronunciation dictionary
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: telnyx-pronunciation-dictionaries.updatepronunciationdict
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.