Telnyx · Capability

Telnyx API — IP Connections

Telnyx API — IP Connections. 5 operations. Lead operation: List Ip connections. Self-contained Naftiko capability covering one Telnyx business surface.

Run with Naftiko TelnyxIP Connections

What You Can Do

GET
Listipconnections — List Ip connections
/v1/ip-connections
POST
Createipconnection — Create an Ip connection
/v1/ip-connections
DELETE
Deleteipconnection — Delete an Ip connection
/v1/ip-connections/{id}
GET
Retrieveipconnection — Retrieve an Ip connection
/v1/ip-connections/{id}
PATCH
Updateipconnection — Update an Ip connection
/v1/ip-connections/{id}

MCP Tools

list-ip-connections

List Ip connections

read-only idempotent
create-ip-connection

Create an Ip connection

delete-ip-connection

Delete an Ip connection

idempotent
retrieve-ip-connection

Retrieve an Ip connection

read-only idempotent
update-ip-connection

Update an Ip connection

idempotent

Capability Spec

telnyx-ip-connections.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Telnyx API — IP Connections
  description: 'Telnyx API — IP Connections. 5 operations. Lead operation: List Ip connections. Self-contained Naftiko capability
    covering one Telnyx business surface.'
  tags:
  - Telnyx
  - IP Connections
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    TELNYX_API_KEY: TELNYX_API_KEY
capability:
  consumes:
  - type: http
    namespace: telnyx-ip-connections
    baseUri: https://api.telnyx.com/v2
    description: Telnyx API — IP Connections business capability. Self-contained, no shared references.
    resources:
    - name: ip_connections
      path: /ip_connections
      operations:
      - name: listipconnections
        method: GET
        description: List Ip connections
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createipconnection
        method: POST
        description: Create an Ip connection
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: ip_connections-id
      path: /ip_connections/{id}
      operations:
      - name: deleteipconnection
        method: DELETE
        description: Delete an Ip connection
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: Identifies the type of resource.
          required: true
      - name: retrieveipconnection
        method: GET
        description: Retrieve an Ip connection
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: IP Connection ID
          required: true
      - name: updateipconnection
        method: PATCH
        description: Update an Ip connection
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: Identifies the type of resource.
          required: true
        - 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-ip-connections-rest
    port: 8080
    description: REST adapter for Telnyx API — IP Connections. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/ip-connections
      name: ip-connections
      description: REST surface for ip_connections.
      operations:
      - method: GET
        name: listipconnections
        description: List Ip connections
        call: telnyx-ip-connections.listipconnections
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createipconnection
        description: Create an Ip connection
        call: telnyx-ip-connections.createipconnection
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/ip-connections/{id}
      name: ip-connections-id
      description: REST surface for ip_connections-id.
      operations:
      - method: DELETE
        name: deleteipconnection
        description: Delete an Ip connection
        call: telnyx-ip-connections.deleteipconnection
        with:
          id: rest.id
        outputParameters:
        - type: object
          mapping: $.
      - method: GET
        name: retrieveipconnection
        description: Retrieve an Ip connection
        call: telnyx-ip-connections.retrieveipconnection
        with:
          id: rest.id
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: updateipconnection
        description: Update an Ip connection
        call: telnyx-ip-connections.updateipconnection
        with:
          id: rest.id
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: telnyx-ip-connections-mcp
    port: 9090
    transport: http
    description: MCP adapter for Telnyx API — IP Connections. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: list-ip-connections
      description: List Ip connections
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: telnyx-ip-connections.listipconnections
      outputParameters:
      - type: object
        mapping: $.
    - name: create-ip-connection
      description: Create an Ip connection
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: telnyx-ip-connections.createipconnection
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: delete-ip-connection
      description: Delete an Ip connection
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: telnyx-ip-connections.deleteipconnection
      with:
        id: tools.id
      outputParameters:
      - type: object
        mapping: $.
    - name: retrieve-ip-connection
      description: Retrieve an Ip connection
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: telnyx-ip-connections.retrieveipconnection
      with:
        id: tools.id
      outputParameters:
      - type: object
        mapping: $.
    - name: update-ip-connection
      description: Update an Ip connection
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: telnyx-ip-connections.updateipconnection
      with:
        id: tools.id
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.