Telnyx · Capability

Telnyx API — Outbound Voice Profiles

Telnyx API — Outbound Voice Profiles. 5 operations. Lead operation: Get all outbound voice profiles. Self-contained Naftiko capability covering one Telnyx business surface.

Run with Naftiko TelnyxOutbound Voice Profiles

What You Can Do

GET
Listoutboundvoiceprofiles — Get all outbound voice profiles
/v1/outbound-voice-profiles
POST
Createvoiceprofile — Create an outbound voice profile
/v1/outbound-voice-profiles
DELETE
Deleteoutboundvoiceprofile — Delete an outbound voice profile
/v1/outbound-voice-profiles/{id}
GET
Getoutboundvoiceprofile — Retrieve an outbound voice profile
/v1/outbound-voice-profiles/{id}
PATCH
Updateoutboundvoiceprofile — Updates an existing outbound voice profile.
/v1/outbound-voice-profiles/{id}

MCP Tools

get-all-outbound-voice-profiles

Get all outbound voice profiles

read-only idempotent
create-outbound-voice-profile

Create an outbound voice profile

delete-outbound-voice-profile

Delete an outbound voice profile

idempotent
retrieve-outbound-voice-profile

Retrieve an outbound voice profile

read-only idempotent
updates-existing-outbound-voice-profile

Updates an existing outbound voice profile.

idempotent

Capability Spec

telnyx-outbound-voice-profiles.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Telnyx API — Outbound Voice Profiles
  description: 'Telnyx API — Outbound Voice Profiles. 5 operations. Lead operation: Get all outbound voice profiles. Self-contained
    Naftiko capability covering one Telnyx business surface.'
  tags:
  - Telnyx
  - Outbound Voice Profiles
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    TELNYX_API_KEY: TELNYX_API_KEY
capability:
  consumes:
  - type: http
    namespace: telnyx-outbound-voice-profiles
    baseUri: https://api.telnyx.com/v2
    description: Telnyx API — Outbound Voice Profiles business capability. Self-contained, no shared references.
    resources:
    - name: outbound_voice_profiles
      path: /outbound_voice_profiles
      operations:
      - name: listoutboundvoiceprofiles
        method: GET
        description: Get all outbound voice profiles
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createvoiceprofile
        method: POST
        description: Create an outbound voice profile
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: outbound_voice_profiles-id
      path: /outbound_voice_profiles/{id}
      operations:
      - name: deleteoutboundvoiceprofile
        method: DELETE
        description: Delete an outbound voice profile
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: getoutboundvoiceprofile
        method: GET
        description: Retrieve an outbound voice profile
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: updateoutboundvoiceprofile
        method: PATCH
        description: Updates an existing outbound voice profile.
        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-outbound-voice-profiles-rest
    port: 8080
    description: REST adapter for Telnyx API — Outbound Voice Profiles. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/outbound-voice-profiles
      name: outbound-voice-profiles
      description: REST surface for outbound_voice_profiles.
      operations:
      - method: GET
        name: listoutboundvoiceprofiles
        description: Get all outbound voice profiles
        call: telnyx-outbound-voice-profiles.listoutboundvoiceprofiles
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createvoiceprofile
        description: Create an outbound voice profile
        call: telnyx-outbound-voice-profiles.createvoiceprofile
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/outbound-voice-profiles/{id}
      name: outbound-voice-profiles-id
      description: REST surface for outbound_voice_profiles-id.
      operations:
      - method: DELETE
        name: deleteoutboundvoiceprofile
        description: Delete an outbound voice profile
        call: telnyx-outbound-voice-profiles.deleteoutboundvoiceprofile
        outputParameters:
        - type: object
          mapping: $.
      - method: GET
        name: getoutboundvoiceprofile
        description: Retrieve an outbound voice profile
        call: telnyx-outbound-voice-profiles.getoutboundvoiceprofile
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: updateoutboundvoiceprofile
        description: Updates an existing outbound voice profile.
        call: telnyx-outbound-voice-profiles.updateoutboundvoiceprofile
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: telnyx-outbound-voice-profiles-mcp
    port: 9090
    transport: http
    description: MCP adapter for Telnyx API — Outbound Voice Profiles. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: get-all-outbound-voice-profiles
      description: Get all outbound voice profiles
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: telnyx-outbound-voice-profiles.listoutboundvoiceprofiles
      outputParameters:
      - type: object
        mapping: $.
    - name: create-outbound-voice-profile
      description: Create an outbound voice profile
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: telnyx-outbound-voice-profiles.createvoiceprofile
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: delete-outbound-voice-profile
      description: Delete an outbound voice profile
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: telnyx-outbound-voice-profiles.deleteoutboundvoiceprofile
      outputParameters:
      - type: object
        mapping: $.
    - name: retrieve-outbound-voice-profile
      description: Retrieve an outbound voice profile
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: telnyx-outbound-voice-profiles.getoutboundvoiceprofile
      outputParameters:
      - type: object
        mapping: $.
    - name: updates-existing-outbound-voice-profile
      description: Updates an existing outbound voice profile.
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: telnyx-outbound-voice-profiles.updateoutboundvoiceprofile
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.